From b479dd0b2f19d97d35d3f7a0669ae4adeef27852 Mon Sep 17 00:00:00 2001 From: martin legrand Date: Thu, 24 Apr 2025 13:24:56 +0200 Subject: [PATCH] rm debug print --- sources/agents/browser_agent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sources/agents/browser_agent.py b/sources/agents/browser_agent.py index 1588600..71c622f 100644 --- a/sources/agents/browser_agent.py +++ b/sources/agents/browser_agent.py @@ -329,7 +329,6 @@ class BrowserAgent(Agent): while not complete and len(unvisited) > 0: self.memory.clear() - print("Debug history:", self.search_history) unvisited = self.select_unvisited(search_result) answer, reasoning = await self.llm_decide(prompt, show_reasoning = False) if self.last_answer == answer: