fix(routing): honor edited custom-node API type - #12358
Open
pacocartones wants to merge 3 commits into
Open
Conversation
The regression is covered at the sink: an integration test drives handleChat through the real PUT /api/provider-nodes/[id] edit and asserts the captured upstream request uses the edited Chat Completions shape. Closes diegosouzapw#11884 Co-authored-by: Leon Marcos <leonaniagomez@gmail.com>
…osouzapw#12358 Co-authored-by: Leon Marcos <leonaniagomez@gmail.com>
pacocartones
added a commit
to pacocartones/OmniRoute
that referenced
this pull request
Sep 1, 2026
pacocartones
force-pushed
the
fix/11884-custom-node-api-type-pc
branch
from
September 1, 2026 23:26
6a681a3 to
5df0c34
Compare
Co-authored-by: Leon Marcos <leonaniagomez@gmail.com>
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.
Summary
modelInfo.targetFormat, so chat core's credential-aware resolution picks the live connection setting instead of the format baked into the node id at creation.Related Issues
Validation
tests/integration/chat-pipeline.test.ts(#11884 chat pipeline sends a custom node's edited Chat API type upstream) 1/1,tests/unit/chat-helpers.test.ts28/28,npm run typecheck:coreexit 0, focused ESLint exit 0,git diff --checkclean,check:changelog-integrityOKnpm run lint— exit 0 with--pass-on-unpruned-suppressions; the literal command exits 2 only because the merged base leaves unused global suppressions (eslint 10), no rule violation reportedrelease/v3.8.51@158647618; focused checks rerun afterwardRegression proof at the sink: with the
src/sse/handlers/chat.tsforwarding hunks reverted, the new integration test fails (the saved Chat API type must produce a Chat Completions body, the upstream body is Responses-shaped); with the fix restored it passes.Pre-existing, unrelated: three other cases in
tests/integration/chat-pipeline.test.tsfail identically on the untouched base with upstream410 "Model claude/claude-3-5-sonnet-20241022 was shut down"/502.Tests Added Or Updated
tests/integration/chat-pipeline.test.ts— creates a custom node whose id still encodes the Responses type, edits it to Chat through the realPUT /api/provider-nodes/[id]handler, driveshandleChatwith a strictglobalThis.fetchdouble and asserts the captured upstream call isPOST {baseUrl}/chat/completionswith amessagesbody and noinput.tests/unit/chat-helpers.test.ts—#11884 configured Chat API type wins after custom-node model resolutionpins the resolver-levelcustomModelTargetFormatcontract.Coverage Notes
src/sse/handlers/chat.tsandsrc/sse/handlers/chatHelpers.tsare exercised by both tests above; the integration test covers the full request path through the fetch sink.Reviewer Notes