fix(api): accept the advertised gateway-default model on chat surfaces - #868
Open
seonghobae wants to merge 33 commits into
Open
fix(api): accept the advertised gateway-default model on chat surfaces#868seonghobae wants to merge 33 commits into
seonghobae wants to merge 33 commits into
Conversation
The /v1/models listing advertised 'contextual-orchestrator' as its first entry and every batch request already defaulted to it, but _require_pool_model special-cased only AUTO_MODEL/FREE_MODEL. The gateway's own default id was therefore rejected with 400 on /v1/chat/completions, /v1/completions, /v1/embeddings, and /v1/responses: callers could submit async batch-routing jobs yet never hold a conversation. Introduce TaskOrchestrator.GATEWAY_DEFAULT_MODEL as the canonical virtual id, resolve it with auto semantics in _require_pool_model (capability callers still bind a concrete agent), and reference it at the remaining server/orchestrator call sites so the advertised list and the accepted set can no longer drift.
|
Warning Review limit reachedNext included review available in 15 minutes. View limit detailsLimit details: You’ve used the included review currently available. You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. Review configuration: ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (25)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
seonghobae
enabled auto-merge
August 26, 2026 09:05
…into fix/gateway-default-chat-model
This was referenced Aug 26, 2026
* fix: discover configured gateway model catalog * fix: require consensus for gateway pricing * fix: normalize gateway bootstrap credential
seonghobae
disabled auto-merge
August 26, 2026 10:25
seonghobae
enabled auto-merge (squash)
August 26, 2026 10:26
…hat-model # Conflicts: # contextual_orchestrator/server.py
…into fix/gateway-default-chat-model
…into fix/gateway-default-chat-model
seonghobae
disabled auto-merge
August 26, 2026 12:37
seonghobae
enabled auto-merge (squash)
August 26, 2026 12:52
seonghobae
disabled auto-merge
August 26, 2026 12:57
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.
Problem
Model discovery and serving had drifted across gateway defaults, configured-gateway metadata, free routing, and provider privacy evidence.
Fix
contextual-orchestrator, andorchestrator/autoone contract across Chat, Responses, and embeddings; keeporchestrator/freestrictly zero-cost.Official privacy sources:
data_collection=denyrouting policyEcosystem dependencies
These remain stacked protected deliveries; their absence leaves policy enrichment unavailable rather than bypassing the boundary.
Validation