From 5dfaf866c9e1d9f277af3a5ec47cf567e8e8d76d Mon Sep 17 00:00:00 2001 From: Bruno Tanabe Date: Mon, 1 Jul 2024 00:16:06 -0300 Subject: [PATCH] fix: Fix grammar error in documentation 'Crew Attributes' (#836) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correction of grammar error in the CrewAI documentation, on the page 'https://docs.crewai.com/core-concepts/Crews/' it says 'ustom' instead of 'Custom'. --- docs/core-concepts/Crews.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core-concepts/Crews.md b/docs/core-concepts/Crews.md index 54fe8a0e2..01004d33a 100644 --- a/docs/core-concepts/Crews.md +++ b/docs/core-concepts/Crews.md @@ -28,7 +28,7 @@ A crew in crewAI represents a collaborative group of agents working together to | **Task Callback** *(optional)* | A function that is called after the completion of each task. Useful for monitoring or additional operations post-task execution. | | **Share Crew** *(optional)* | Whether you want to share the complete crew information and execution with the crewAI team to make the library better, and allow us to train models. | | **Output Log File** *(optional)* | Whether you want to have a file with the complete crew output and execution. You can set it using True and it will default to the folder you are currently in and it will be called logs.txt or passing a string with the full path and name of the file. | -| **Manager Agent** *(optional)* | `manager` sets a ustom agent that will be used as a manager. | +| **Manager Agent** *(optional)* | `manager` sets a custom agent that will be used as a manager. | | **Manager Callbacks** *(optional)* | `manager_callbacks` takes a list of callback handlers to be executed by the manager agent when a hierarchical process is used. | | **Prompt File** *(optional)* | Path to the prompt JSON file to be used for the crew. | @@ -155,4 +155,4 @@ for async_result in async_results: print(async_result) ``` -These methods provide flexibility in how you manage and execute tasks within your crew, allowing for both synchronous and asynchronous workflows tailored to your needs \ No newline at end of file +These methods provide flexibility in how you manage and execute tasks within your crew, allowing for both synchronous and asynchronous workflows tailored to your needs