fix config param error
This commit is contained in:
parent
715d5f483d
commit
be415ca968
|
|
@ -116,7 +116,6 @@ def request_research(query: str) -> ResearchResult:
|
||||||
research_only=True,
|
research_only=True,
|
||||||
hil=config.get("hil", False),
|
hil=config.get("hil", False),
|
||||||
console_message=query,
|
console_message=query,
|
||||||
config=config,
|
|
||||||
)
|
)
|
||||||
except AgentInterrupt:
|
except AgentInterrupt:
|
||||||
print()
|
print()
|
||||||
|
|
@ -312,7 +311,6 @@ def request_research_and_implementation(query: str) -> Dict[str, Any]:
|
||||||
research_only=False,
|
research_only=False,
|
||||||
hil=config.get("hil", False),
|
hil=config.get("hil", False),
|
||||||
console_message=query,
|
console_message=query,
|
||||||
config=config,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
success = True
|
success = True
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue