Use Configuration of the rearch branch (#4803)

This commit is contained in:
merwanehamadi
2023-06-26 17:01:36 -07:00
committed by GitHub
parent b1570543c8
commit 9f353f41c4
13 changed files with 389 additions and 308 deletions

View File

@@ -13,9 +13,9 @@ def run_task(task) -> None:
def bootstrap_agent(task):
config = Config()
config.set_continuous_mode(False)
config.set_temperature(0)
config = Config.build_config_from_env()
config.continuous_mode = False
config.temperature = 0
config.plain_output = True
command_registry = get_command_registry(config)
config.memory_backend = "no_memory"