refactor(core): remove unused chat state (#45664)

This commit is contained in:
Kit Langton 2026-08-27 19:10:36 -04:00 committed by GitHub
parent a067c45cb6
commit bfb00cbb75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -330,7 +330,6 @@ export class OpenAICompatibleChatLanguageModel implements LanguageModelV3 {
const toolCalls: Array<{
id: string
type: "function"
function: {
name: string
arguments: string
@ -560,7 +559,6 @@ export class OpenAICompatibleChatLanguageModel implements LanguageModelV3 {
toolCalls[index] = {
id: toolCallDelta.id,
type: "function",
function: {
name: toolCallDelta.function.name,
arguments: toolCallDelta.function.arguments ?? "",