From 9772be0c48d7d5af3444cb3506a9a0b74712be8f Mon Sep 17 00:00:00 2001 From: Kye Date: Thu, 6 Jul 2023 14:20:51 -0400 Subject: [PATCH] no max iters --- swarms/agents/boss/boss_agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swarms/agents/boss/boss_agent.py b/swarms/agents/boss/boss_agent.py index 216c2be1..1d7d7444 100644 --- a/swarms/agents/boss/boss_agent.py +++ b/swarms/agents/boss/boss_agent.py @@ -7,14 +7,14 @@ class BossNode: self.llm = llm self.vectorstore = vectorstore self.agent_executor = agent_executor - self.max_iterations = max_iterations + # self.max_iterations = max_iterations try: self.baby_agi = BabyAGI.from_llm( llm=self.llm, vectorstore=self.vectorstore, task_execution_chain=self.agent_executor, - max_iterations=self.max_iterations, + # max_iterations=self.max_iterations, ) except ValidationError as e: print(f"Validation Error while initializing BabyAGI: {e}")