mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
- translator/index.js: replace require() with static side-effect imports (ESM-safe), lazy-init registry maps to survive circular import order - openai-responses->openai: map max_output_tokens -> max_tokens (avoid leaking field upstream) - gemini/antigravity -> openai: derive deterministic tool_call id from name so functionCall/functionResponse pair correctly (fixes provider tool-pairing 400s) - add offline unit tests (finish-reason, usage, session-manager, ollama malformed args, const guard) - add real-creds integration tests (provider-cases + all-formats matrix: 6 inbound formats x 4 scenarios) Includes co-located provider registry refactor (pricing/capabilities/media providers) and sessionManager updates. Co-authored-by: Cursor <cursoragent@cursor.com>
34 lines
921 B
JavaScript
34 lines
921 B
JavaScript
export default {
|
|
id: "qwen",
|
|
hidden: true,
|
|
priority: 130,
|
|
alias: "qw",
|
|
display: {
|
|
name: "Qwen Code",
|
|
icon: "psychology",
|
|
color: "#10B981",
|
|
website: "https://chat.qwen.ai",
|
|
notice: {
|
|
signupUrl: "https://chat.qwen.ai",
|
|
},
|
|
},
|
|
category: "oauth",
|
|
transport: {
|
|
baseUrl: "https://portal.qwen.ai/v1/chat/completions",
|
|
},
|
|
models: [
|
|
{ id: "qwen3-coder-plus", name: "Qwen3 Coder Plus" },
|
|
{ id: "qwen3-coder-flash", name: "Qwen3 Coder Flash" },
|
|
{ id: "vision-model", name: "Qwen3 Vision Model" },
|
|
{ id: "coder-model", name: "Qwen3.6 Coder Model" },
|
|
],
|
|
oauth: {
|
|
clientId: "f0304373b74a44d2b584a3fb70ca9e56",
|
|
deviceCodeUrl: "https://chat.qwen.ai/api/v1/oauth2/device/code",
|
|
tokenUrl: "https://chat.qwen.ai/api/v1/oauth2/token",
|
|
scope: "openid profile email model.completion",
|
|
codeChallengeMethod: "S256",
|
|
refreshLeadMs: 1200000,
|
|
},
|
|
};
|