You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove duplicate tool_call emission from Responses API providers
The openai-native and openai-codex providers were emitting tool calls twice:
1. tool_call_partial events during streaming (handled by NativeToolCallParser)
2. Complete tool_call from response.output_item.done events
This caused tools to be rendered twice in the UI.
Fix: Remove the tool_call emission from response.output_item.done since the
streaming path already handles tool call completion via NativeToolCallParser's
finalizeRawChunks() and finalizeStreamingToolCall() methods.
0 commit comments