From 33ab1fa2ad23109a7f6cf3a4d3ec7a0336cc48c6 Mon Sep 17 00:00:00 2001 From: Engel Nyst Date: Thu, 27 Jun 2024 04:18:26 +0200 Subject: [PATCH] increase attempts --- agenthub/codeact_agent/codeact_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agenthub/codeact_agent/codeact_agent.py b/agenthub/codeact_agent/codeact_agent.py index 06e0ca9975..ce0549ca98 100644 --- a/agenthub/codeact_agent/codeact_agent.py +++ b/agenthub/codeact_agent/codeact_agent.py @@ -161,7 +161,7 @@ class CodeActAgent(Agent): system_message: str = get_system_message() in_context_example: str = f"Here is an example of how you can interact with the environment for task solving:\n{get_in_context_example()}\n\nNOW, LET'S START!" - attempts_to_condense: int = 2 + attempts_to_condense: int = 10 action_parser = CodeActResponseParser()