Fix tool usage

This commit is contained in:
Gui Vieira
2024-07-12 15:54:30 -03:00
parent 7b53457ef3
commit bd2978861e

View File

@@ -151,16 +151,12 @@ class ToolUsage:
for k, v in calling.arguments.items() for k, v in calling.arguments.items()
if k in acceptable_args if k in acceptable_args
} }
result = tool._run(**arguments) result = tool.invoke(input=arguments)
except Exception: except Exception:
if tool.args_schema: arguments = calling.arguments
arguments = calling.arguments result = tool.invoke(input=arguments)
result = tool._run(**arguments)
else:
arguments = calling.arguments.values() # type: ignore # Incompatible types in assignment (expression has type "dict_values[str, Any]", variable has type "dict[str, Any]")
result = tool._run(*arguments)
else: else:
result = tool._run() result = tool.invoke(input={})
except Exception as e: except Exception as e:
self._run_attempts += 1 self._run_attempts += 1
if self._run_attempts > self._max_parsing_attempts: if self._run_attempts > self._max_parsing_attempts: