I'm having trouble finding the expected JSON format for submitting multiple tool outputs at once (without streaming) with the assistant API.
Here's an example of the format I'm currently sending to the threads endpoint with the run ID. This was working with only one tool output. Would greatly appreciate any help!
{
"tool_outputs": [
{
"tool_call_id": "call_abc",
"output": {
"success": "true"
}
},
{
"tool_call_id": "xyz",
"output": {
"success": "true"
}
}
]
}