We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cfaae5 commit d42edbfCopy full SHA for d42edbf
unisonai/single_agent.py
@@ -233,7 +233,10 @@ def unleash(self, task: str):
233
234
except TypeError as e:
235
if ("missing 1 required positional argument: 'self'" in str(e) or
236
- "got multiple values for argument" in str(e)):
+ "got multiple values for argument" in str(e) or
237
+ "takes 0 positional arguments but 1 was given" in str(e)):
238
+ # ---- END OF THE FIX ----
239
+
240
try:
241
# --- Fallback execution path (unbound method) ---
242
unbound_run_method = tool_instance.__class__._run
0 commit comments