From 67f55bae2c68bdc2f904349bf67ef3c7128f7405 Mon Sep 17 00:00:00 2001 From: Rok Benko <115651717+rokbenko@users.noreply.github.com> Date: Thu, 17 Oct 2024 18:18:31 +0200 Subject: [PATCH] Fix incorrect parameter name in Vision tool docs page (#1461) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: João Moura --- docs/tools/visiontool.mdx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/tools/visiontool.mdx b/docs/tools/visiontool.mdx index 83856e34b..f4eab0f1c 100644 --- a/docs/tools/visiontool.mdx +++ b/docs/tools/visiontool.mdx @@ -8,13 +8,13 @@ icon: eye ## Description -This tool is used to extract text from images. When passed to the agent it will extract the text from the image and then use it to generate a response, report or any other output. +This tool is used to extract text from images. When passed to the agent it will extract the text from the image and then use it to generate a response, report or any other output. The URL or the PATH of the image should be passed to the Agent. - ## Installation Install the crewai_tools package + ```shell pip install 'crewai[tools]' ``` @@ -44,7 +44,6 @@ def researcher(self) -> Agent: The VisionTool requires the following arguments: -| Argument | Type | Description | -|:---------------|:---------|:-------------------------------------------------------------------------------------------------------------------------------------| -| **image_path** | `string` | **Mandatory**. The path to the image file from which text needs to be extracted. | - +| Argument | Type | Description | +| :----------------- | :------- | :------------------------------------------------------------------------------- | +| **image_path_url** | `string` | **Mandatory**. The path to the image file from which text needs to be extracted. |