feat: Increase agents max_iterations to 300

This commit is contained in:
Ahmed Allam
2025-10-31 21:07:21 +02:00
committed by Ahmed Allam
parent ec45205fce
commit 713f817e3a
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ async def run_cli(args: Any) -> None: # noqa: PLR0915
llm_config = LLMConfig()
agent_config = {
"llm_config": llm_config,
"max_iterations": 200,
"max_iterations": 300,
"non_interactive": True,
}