From 1df621fad0d8921019ca76c388c3b0815606ad84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Sat, 24 Feb 2024 03:33:05 -0300 Subject: [PATCH] make agents not have a memory by default --- 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 85abaa9d6..9aa6a3d3a 100644 --- a/src/crewai/agent.py +++ b/src/crewai/agent.py @@ -66,7 +66,7 @@ class Agent(BaseModel): description="Maximum number of requests per minute for the agent execution to be respected.", ) memory: bool = Field( - default=True, description="Whether the agent should have memory or not" + default=False, description="Whether the agent should have memory or not" ) verbose: bool = Field( default=False, description="Verbose mode for the Agent Execution"