From 9e61b8325bf6e3ab975e49cdd31a07932ea1d9d5 Mon Sep 17 00:00:00 2001 From: Bruno Tanabe Date: Thu, 27 Jun 2024 00:41:22 -0300 Subject: [PATCH] fix: Fix grammar error in documentation in PDF Search Tool (#819) Correction of grammar error in the CrewAI documentation, on the page 'https://docs.crewai.com/tools/PDFSearchTool/' it says 'Optinal' instead of 'Optional'. --- docs/tools/PDFSearchTool.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/PDFSearchTool.md b/docs/tools/PDFSearchTool.md index 17e36ca64..6a7423f67 100644 --- a/docs/tools/PDFSearchTool.md +++ b/docs/tools/PDFSearchTool.md @@ -29,7 +29,7 @@ tool = PDFSearchTool(pdf='path/to/your/document.pdf') ``` ## Arguments -- `pdf`: **Optinal** The PDF path for the search. Can be provided at initialization or within the `run` method's arguments. If provided at initialization, the tool confines its search to the specified document. +- `pdf`: **Optional** The PDF path for the search. Can be provided at initialization or within the `run` method's arguments. If provided at initialization, the tool confines its search to the specified document. ## Custom model and embeddings