From cce74b29ad8b97f31e694d1c8d48d8ca92450c5f Mon Sep 17 00:00:00 2001 From: martin legrand Date: Thu, 27 Mar 2025 12:19:54 +0100 Subject: [PATCH] fix : planner agent crash --- sources/agents/planner_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/agents/planner_agent.py b/sources/agents/planner_agent.py index ce674d0..8a46335 100644 --- a/sources/agents/planner_agent.py +++ b/sources/agents/planner_agent.py @@ -112,7 +112,7 @@ class PlannerAgent(Agent): except Exception as e: raise e self.last_answer = prev_agent_answer - return prev_agent_answer, reasoning + return prev_agent_answer, "" if __name__ == "__main__": from llm_provider import Provider