From 5322cff6a9d1f13d5286c361403b441c86715bb6 Mon Sep 17 00:00:00 2001 From: scott------ Date: Sun, 21 Jan 2024 14:56:19 -0500 Subject: [PATCH] Update agent.py (#161) adding tools to the list of attribute descriptions --- src/crewai/agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crewai/agent.py b/src/crewai/agent.py index b3850095d..111715ab0 100644 --- a/src/crewai/agent.py +++ b/src/crewai/agent.py @@ -44,6 +44,7 @@ class Agent(BaseModel): max_rpm: Maximum number of requests per minute for the agent execution to be respected. verbose: Whether the agent execution should be in verbose mode. allow_delegation: Whether the agent is allowed to delegate tasks to other agents. + tools: Tools at agents disposal """ __hash__ = object.__hash__