From 3bba04ac714ef0acf1af018bcc4bec2a2c0efb1f Mon Sep 17 00:00:00 2001 From: theCyberTech - Rip&Tear <84775494+theCyberTech@users.noreply.github.com> Date: Fri, 24 May 2024 11:06:27 +0800 Subject: [PATCH] Update crew.py (#644) Fixed Type on line 53 --- src/crewai/crew.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai/crew.py b/src/crewai/crew.py index 01b243c91..bf169190b 100644 --- a/src/crewai/crew.py +++ b/src/crewai/crew.py @@ -55,7 +55,7 @@ class Crew(BaseModel): full_output: Whether the crew should return the full output with all tasks outputs or just the final output. task_callback: Callback to be executed after each task for every agents execution. step_callback: Callback to be executed after each step for every agents execution. - share_crew: Whether you want to share the complete crew infromation and execution with crewAI to make the library better, and allow us to train models. + share_crew: Whether you want to share the complete crew information and execution with crewAI to make the library better, and allow us to train models. """ __hash__ = object.__hash__ # type: ignore