From be415ca96875d1e89c4d872be6049b1c41ccf50b Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Thu, 13 Mar 2025 07:02:11 -0400 Subject: [PATCH] fix config param error --- ra_aid/tools/agent.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ra_aid/tools/agent.py b/ra_aid/tools/agent.py index 740ba80..d511bb6 100644 --- a/ra_aid/tools/agent.py +++ b/ra_aid/tools/agent.py @@ -116,7 +116,6 @@ def request_research(query: str) -> ResearchResult: research_only=True, hil=config.get("hil", False), console_message=query, - config=config, ) except AgentInterrupt: print() @@ -312,7 +311,6 @@ def request_research_and_implementation(query: str) -> Dict[str, Any]: research_only=False, hil=config.get("hil", False), console_message=query, - config=config, ) success = True