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 cc95854 commit 0ec49d9Copy full SHA for 0ec49d9
src/gptscript.ts
@@ -421,7 +421,7 @@ export class Run {
421
if (out.done === undefined || !out.done) {
422
this.chatState = JSON.stringify(out.state)
423
this.state = RunState.Continue
424
- this.respondingToolId = out.toolId
+ this.respondingToolId = out.toolID
425
} else {
426
this.state = RunState.Finished
427
this.chatState = undefined
@@ -704,7 +704,7 @@ interface ChatState {
704
state: string
705
done: boolean
706
content: string
707
- toolId: string
+ toolID: string
708
}
709
710
export type Arguments = string | Record<string, string>
0 commit comments