fix(opencode): synthesize missing tool-call IDs in openai-compatible streaming - #47954
Open
lloeki wants to merge 1 commit into
Open
fix(opencode): synthesize missing tool-call IDs in openai-compatible streaming#47954lloeki wants to merge 1 commit into
lloeki wants to merge 1 commit into
Conversation
…streaming The @ai-sdk/openai-compatible streaming parser throws when a tool-call delta arrives without an id field. The non-streaming and flush paths already fall back to generateId(). This makes the streaming first-chunk path consistent. Closes anomalyco#43199
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue for this PR
Closes #43199
Type of change
What does this PR do?
The
@ai-sdk/openai-compatiblestreaming parser throws when a tool-call delta arrives without anidfield. This crashes GLM-5.2 (served via Mistral's OpenAI-compatible endpoint) on any tool call.The SDK is inconsistent: the non-streaming path (line 603) and the streaming flush path (line 880) already fall back to
generateId()whenidis missing. Only the streaming first-chunk path (line 769) throws. This patch replaces the throw with the samegenerateId()fallback, making all three paths consistent.How did you verify your code works?
Added
packages/core/test/provider-openai-compatible.test.tswith two tests:id— asserts no errors, synthesized IDs are stable across fragments, and tool-call accumulation worksid— asserts provided IDs are preservedAlso verified live with GLM-5.2 on Mistral (tool calls succeed with the patch applied).
Checklist