mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
- New providers: trae, windsurf, zed, workbuddy, codebuddy-intl
(registry + executor, wired into executors/index.js + registry/index.js)
- zed: port hosted cloud proxy from OmniRoute — RSA access-token → short-lived
LLM token exchange (shared/zedAuth.js) + NDJSON {event}/{status}/[DONE]
stream translated back to OpenAI via Claude/Gemini/OpenAI-Responses translators
- Provider icons (128x128 png) for the 5 new providers
- qoder + tokenRefresh provider tweaks
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
export default {
|
|
id: "qoder",
|
|
priority: 30,
|
|
alias: "qd",
|
|
uiAlias: "qd",
|
|
display: {
|
|
name: "Qoder",
|
|
icon: "water_drop",
|
|
color: "#EC4899",
|
|
website: "https://qoder.com",
|
|
notice: {
|
|
signupUrl: "https://qoder.com",
|
|
},
|
|
deprecated: true,
|
|
deprecationNotice: "RISK_NOTICE",
|
|
},
|
|
category: "free",
|
|
transport: {
|
|
baseUrl: "https://api3.qoder.sh/algo/api/v2/service/pro/sse/agent_chat_generation",
|
|
headers: {},
|
|
timeoutMs: 120000,
|
|
stallTimeoutMs: 120000,
|
|
usage: {
|
|
url: "https://openapi.qoder.sh/api/v2/quota/usage",
|
|
},
|
|
},
|
|
models: [
|
|
{ id: "qoder-rome-30ba3b", name: "Qoder ROME" },
|
|
{ id: "glm-5.2", name: "GLM-5.2" },
|
|
{ id: "minimax-m3", name: "MiniMax M3" },
|
|
{ id: "qwen3-coder-plus", name: "Qwen3 Coder Plus" },
|
|
{ id: "qwen3-max", name: "Qwen3 Max" },
|
|
{ id: "qwen3-vl-plus", name: "Qwen3 Vision Plus" },
|
|
{ id: "kimi-k2-0905", name: "Kimi K2 0905" },
|
|
{ id: "qwen3-max-preview", name: "Qwen3 Max Preview" },
|
|
{ id: "kimi-k2", name: "Kimi K2" },
|
|
{ id: "deepseek-v3.2", name: "DeepSeek-V3.2-Exp" },
|
|
{ id: "deepseek-r1", name: "DeepSeek R1" },
|
|
{ id: "deepseek-v3", name: "DeepSeek V3" },
|
|
{ id: "qwen3-32b", name: "Qwen3 32B" },
|
|
{ id: "qwen3-235b-a22b-thinking-2507", name: "Qwen3 235B A22B Thinking 2507" },
|
|
{ id: "qwen3-235b-a22b-instruct", name: "Qwen3 235B A22B Instruct" },
|
|
{ id: "qwen3-235b", name: "Qwen3 235B" },
|
|
],
|
|
oauth: {
|
|
openApiBaseUrl: "https://openapi.qoder.sh",
|
|
centerBaseUrl: "https://center.qoder.sh",
|
|
chatBaseUrl: "https://api3.qoder.sh",
|
|
deviceTokenUrl: "https://openapi.qoder.sh/api/v1/deviceToken/poll",
|
|
refreshUrl: "https://center.qoder.sh/algo/api/v3/user/refresh_token",
|
|
userInfoUrl: "https://openapi.qoder.sh/api/v1/userinfo",
|
|
quotaUsageUrl: "https://openapi.qoder.sh/api/v2/quota/usage",
|
|
loginUrl: "https://qoder.com/device/selectAccounts",
|
|
},
|
|
features: {
|
|
usage: true,
|
|
},
|
|
};
|