Fix run_planning_agent config.
This commit is contained in:
parent
a01b8ebf36
commit
ef4748f009
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue