It seems that calling multiple tools is not supported in the new streaming feature for the assistant API. I am using the code below, but the “toolCallDone” event is only triggered for the first tool and never for any subsequent tools (“toolCallDelta” is still triggered for other tools although after the first tool, the snapshot value is “undefined”). Can someone look into this?
I am using the same code as @paul.grimshaw from his thread (Issue with submitting tool outputs in assistants stream - #3 by paul.grimshaw)
let runId
return new Promise(resolve => {
client.beta.threads.runs
.createAndStream(threadId, {
assistant_id: assistantId
})
.on("runStepCreated", run => {
runId = run.run_id
})
.on("runStepDone", () => {
console.log("runStepDone")
resolve({ threadId })
})
.on("textCreated", text => console.log(`\nassistant > ${text.value}\n\n`))
.on("textDelta", textDelta => {
resultTextStream.push(textDelta.value)
console.log(resultTextStream.join(""))
})
.on("toolCallCreated", toolCall => console.log(`\nassistant > ${toolCall.type}\n\n`))
.on("toolCallDone", async (toolCall: FunctionToolCall) => {
const argP = JSON.parse(args[toolCall.id].join(""))
const { result } = await callFn(toolCall.function.name, argP, fnRegistry)
const stream = await client.beta.threads.runs.submitToolOutputs(threadId, runId, {
stream: true,
tool_outputs: [
{
tool_call_id: toolCall.id,
output: JSON.stringify(result)
}
]
})
for await (const event of stream) {
console.log(event)
}
})
.on("toolCallDelta", (toolCallDelta, snapshot) => {
if (toolCallDelta.type === "function") {
args[snapshot.id] = [...(args[snapshot.id] ?? []), toolCallDelta.function.arguments]
}
})
})
Thank you!