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 b6668d2 commit 225aa45Copy full SHA for 225aa45
src/core/assistant-message/AssistantMessageParser.ts
@@ -200,9 +200,9 @@ export class AssistantMessageParser {
200
201
yield {
202
type: "tool_use",
203
- name: toolName,
204
- id: accumulatedCall.id ?? "",
205
- input: accumulatedCall.function?.arguments,
+ name: toolUse.name,
+ id: toolUse.toolUseId ?? "",
+ input: toolUse.params,
206
}
207
208
0 commit comments