fix: use a valid default Qwen model for OrcaRouter - #1
Open
nissrin2020ali-ux wants to merge 1 commit into
Open
Conversation
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.
Why
When someone picks the OrcaRouter provider in the sidebar of Nebula AI and chooses a model from the built-in list, the default Qwen model —
qwen/qianwen-3.8— is not served by OrcaRouter anymore. Sending a request with it returns a404 model_not_founderror:So a user who selects the Qwen entry in the Model ID dropdown hits an error on their first send, before they've even had a chance to try the app's streaming workflow.
What changed
src/App.tsxnow listsqwen/qwen3.8-maxas the Qwen default inORCAROUTER_DEFAULT_MODELSinstead of the staleqwen/qianwen-3.8. The other three defaults (orcarouter/auto,deepseek/deepseek-v4-pro,deepseek/deepseek-v4-flash) are unchanged and all resolve correctly.Verification
https://api.orcarouter.ai/v1/chat/completionswith the new model → HTTP 200, contentok.model_not_found, confirming the defect.pnpm check(both tsconfigs) passes;vite buildsucceeds.OrcaRouter is an OpenAI-compatible AI gateway built for both models and agents. Like OpenRouter, it exposes a provider/model namespace across many models — but it also combines adaptive routing, automatic failover, zero-markup inference, observability, guardrails, and agent-tool governance behind the same endpoint. It also runs gateway-level, zero-trust security for AI agents on the same endpoint — screening every prompt/response and governing every tool call on a default-deny basis, with no application code changes.
Discord: discord.gg/YEubt8enRA · X: https://x.com/OrcaRouter
I'm an engineer on the OrcaRouter team.