From a08d0dfe125e82d4a09ec8bce0543e42a29cbaa8 Mon Sep 17 00:00:00 2001 From: Paul Sanders Date: Thu, 23 May 2024 23:04:01 -0400 Subject: [PATCH] Clarify text in docstring (#662) --- src/crewai/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crewai/agent.py b/src/crewai/agent.py index 720a5ed93..382cad521 100644 --- a/src/crewai/agent.py +++ b/src/crewai/agent.py @@ -52,7 +52,7 @@ class Agent(BaseModel): backstory: The backstory of the agent. config: Dict representation of agent configuration. llm: The language model that will run the agent. - function_calling_llm: The language model that will the tool calling for this agent, it overrides the crew function_calling_llm. + function_calling_llm: The language model that will handle the tool calling for this agent, it overrides the crew function_calling_llm. max_iter: Maximum number of iterations for an agent to execute a task. memory: Whether the agent should have memory or not. max_rpm: Maximum number of requests per minute for the agent execution to be respected.