fix(gui): correlate id-less tool-call fragments by provider index - #13224
Open
canblmz1 wants to merge 1 commit into
Open
fix(gui): correlate id-less tool-call fragments by provider index#13224canblmz1 wants to merge 1 commit into
canblmz1 wants to merge 1 commit into
Conversation
Contributor
|
All contributors have signed the CLA ✍️ ✅ |
canblmz1
force-pushed
the
fix/openai-parallel-tool-call-index
branch
from
September 4, 2026 16:38
56bf5ee to
c5d2516
Compare
Author
|
I have read the CLA Document and I hereby sign the CLA |
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.
Description
applyToolCallDeltacurrently falls back to the most recently tracked tool call when a streamed continuation fragment does not contain anid.The OpenAI SDK's streamed tool-call type requires an
indexwhileidis optional. Because Continue currently drops that index infromChatCompletionChunk, interleaved parallel tool-call fragments can be applied to the wrong call.This preserves
tool_call.indexthroughToolCallDeltaandToolCallStateand uses it to correlate id-less continuation fragments. Existing id-based correlation remains authoritative, and the legacy fallback remains unchanged for fragments that provide neither identity field.Fixes #13223
Tests
Added an integration-style regression covering two interleaved parallel OpenAI tool calls and verified that each call retains only its own argument fragments.
Also re-ran the relevant existing GUI and core tool-call suites.
Checklist