Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/core/assistant-message/NativeToolCallParser.ts
Original file line numberDiff line numberDiff line change
Expand Up@@ -250,7 +250,6 @@ export class NativeToolCallParser {
public static processStreamingChunk(id: string, chunk: string): ToolUse | null {
const toolCall = this.streamingToolCalls.get(id)
if (!toolCall) {
console.warn(`[NativeToolCallParser] Received chunk for unknown tool call: ${id}`)
return null
}

Expand DownExpand Up@@ -295,7 +294,6 @@ export class NativeToolCallParser {
public static finalizeStreamingToolCall(id: string): ToolUse | McpToolUse | null {
const toolCall = this.streamingToolCalls.get(id)
if (!toolCall) {
console.warn(`[NativeToolCallParser] Attempting to finalize unknown tool call: ${id}`)
return null
}

Expand Down
Loading