feat : signal handler now agent specific instead of global

This commit is contained in:
martin legrand
2025-04-06 19:46:52 +02:00
parent 26e9dbcd40
commit bb67df8f42
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -296,7 +296,7 @@ class BrowserAgent(Agent):
prompt = self.make_newsearch_prompt(user_prompt, search_result)
unvisited = [None]
while not complete:
answer, reasoning = self.llm_decide(prompt, show_reasoning = True)
answer, reasoning = self.llm_decide(prompt, show_reasoning = False)
extracted_form = self.extract_form(answer)
if len(extracted_form) > 0: