Fix run_planning_agent config.

This commit is contained in:
user 2024-12-21 14:36:39 -05:00
parent a01b8ebf36
commit ef4748f009
1 changed files with 2 additions and 1 deletions

View File

@ -192,8 +192,9 @@ def request_implementation(task_spec: str) -> Dict[str, Any]:
result = run_planning_agent( result = run_planning_agent(
task_spec, task_spec,
model, model,
config=config,
expert_enabled=True, expert_enabled=True,
hil=_global_memory.get('config', {}).get('hil', False) hil=config.get('hil', False)
) )
success = True success = True