From 6eee5cf35018d014a3bacd3c72de3db4bc1f6a56 Mon Sep 17 00:00:00 2001 From: martin legrand Date: Mon, 7 Apr 2025 15:01:17 +0200 Subject: [PATCH] rm debug print --- sources/agents/browser_agent.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/sources/agents/browser_agent.py b/sources/agents/browser_agent.py index 0acc920..b3dd1d5 100644 --- a/sources/agents/browser_agent.py +++ b/sources/agents/browser_agent.py @@ -311,8 +311,6 @@ class BrowserAgent(Agent): links = self.parse_answer(answer) link = self.select_link(links) self.search_history.append(link) - hist = '\n'.join([x for x in self.search_history if x is not None]) - pretty_print(hist, color="warning") if "REQUEST_EXIT" in answer: pretty_print(f"Agent requested exit.", color="status")