From 22d187c71457b291ed78c5dcc9c6e33843caa2dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Thu, 26 Sep 2024 21:38:24 -0300 Subject: [PATCH] increase default max inter --- 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 af7d245b9..fca8efc2f 100644 --- a/src/crewai/agent.py +++ b/src/crewai/agent.py @@ -104,7 +104,7 @@ class Agent(BaseAgent): description="Keep messages under the context window size by summarizing content.", ) max_iter: int = Field( - default=15, + default=20, description="Maximum number of iterations for an agent to execute a task before giving it's best answer", ) max_retry_limit: int = Field(