From 6392a8cdd08a77968ada73dcc3d19847ca6305c8 Mon Sep 17 00:00:00 2001 From: David Solito <46330149+dsolito@users.noreply.github.com> Date: Fri, 3 May 2024 00:21:22 +0200 Subject: [PATCH] Update crew.py (#551) Ad manager_agent description in crew docstring --- src/crewai/crew.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crewai/crew.py b/src/crewai/crew.py index c65dd7d46..d36d80733 100644 --- a/src/crewai/crew.py +++ b/src/crewai/crew.py @@ -36,6 +36,7 @@ class Crew(BaseModel): tasks: List of tasks assigned to the crew. agents: List of agents part of this crew. manager_llm: The language model that will run manager agent. + manager_agent: Custom agent that will be used as manager. memory: Whether the crew should use memory to store memories of it's execution. manager_callbacks: The callback handlers to be executed by the manager agent when hierarchical process is used cache: Whether the crew should use a cache to store the results of the tools execution.