chore: update base application package dependencies and configuration files
This commit is contained in:
Vendored
BIN
Binary file not shown.
Vendored
BIN
Binary file not shown.
+2
-7
@@ -152,15 +152,10 @@ class Agent:
|
||||
for tool in run.required_action.submit_tool_outputs.tool_calls:
|
||||
tool_handler = self.tool_handlers[tool.name]
|
||||
output = await tool_handler(tool.arguments)
|
||||
outputs.append(dict(
|
||||
tool_call_id=tool.id,
|
||||
output=output
|
||||
))
|
||||
outputs.append({"tool_call_id": tool.id, "output": output})
|
||||
if outputs:
|
||||
run = client.beta.threads.runs.submit_tool_outputs_and_poll(
|
||||
thread_id=self.thread.id,
|
||||
run_id=run.id,
|
||||
tool_outputs=outputs
|
||||
thread_id=self.thread.id, run_id=run.id, tool_outputs=outputs
|
||||
)
|
||||
run = self.client.beta.threads.runs.retrieve(
|
||||
thread_id=self.thread.id, run_id=run.id
|
||||
|
||||
Reference in New Issue
Block a user