mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +00:00
Two additions on top of the merged CodeBuddy CN OAuth provider:
1. API key auth — connect with a direct API key (sent as
Authorization: Bearer), not only via OAuth device-code flow.
- registry: add authModes ["oauth","apikey"] + hasOAuth; combined Bearer
auth already forwards the key, token-refresh skips key connections.
- providers POST: accept dual-auth providers (authModes includes
"apikey") that live under category "oauth" — previously rejected as
"Invalid provider". Also fixes the same latent gap for xai.
2. Quota tracker — surface CodeBuddy CN credit balance on the usage
dashboard for both OAuth and API-key connections.
- registry: add transport.usage.url (Tencent billing endpoint) +
features.usage/usageApikey so the connection is quota-eligible.
- new CN-scoped handler services/usage/codebuddy-cn.js: POST the billing
meter endpoint, unwrap data.Response.Data.Accounts[]. The payload mixes
two credit types that must not be merged:
* refill/base ("基础体验包") — recurring allowance; cycle resets well
before the resource expires (CycleEndTime << DeductionEndTime).
Reads the *Cycle* balance, resetAt = next refresh. Cadence-labelled.
* bonus ("活动赠送包") — one-shot credits that expire at CycleEndTime.
Reads the plain Capacity balance. Labelled "Bonus Pack N".
One quota row per package, soonest-expiring first.
- register handler under "codebuddy-cn" in USAGE_HANDLERS.
Frontend needs no change — USAGE_SUPPORTED_PROVIDERS/USAGE_APIKEY_PROVIDERS
and the generic parseQuotaData branch already cover this shape.
Co-authored-by: Cursor <cursoragent@cursor.com>
78 lines
2.6 KiB
JavaScript
78 lines
2.6 KiB
JavaScript
export default {
|
|
id: "codebuddy-cn",
|
|
// Short model prefix (cbcn/glm-5.2). "cbcn" = CodeBuddy CN; reserve "cbai"
|
|
// for a future codebuddy-ai (intl) provider. The full id still resolves.
|
|
alias: "cbcn",
|
|
uiAlias: "cbcn",
|
|
hidden: false,
|
|
priority: 90,
|
|
display: {
|
|
name: "CodeBuddy CN",
|
|
icon: "smart_toy",
|
|
color: "#006EFF",
|
|
website: "https://copilot.tencent.com",
|
|
notice: {
|
|
signupUrl: "https://copilot.tencent.com",
|
|
},
|
|
},
|
|
category: "oauth",
|
|
authModes: ["oauth", "apikey"],
|
|
hasOAuth: true,
|
|
transport: {
|
|
baseUrl: "https://copilot.tencent.com/v2/chat/completions",
|
|
forceStream: true,
|
|
// CodeBuddy is a unified OpenAI-compatible gateway: every model (GLM, Kimi,
|
|
// MiniMax, DeepSeek, Hunyuan) takes reasoning via OpenAI-style reasoning_effort,
|
|
// not its vendor-native thinking shape. Force the openai thinking format.
|
|
thinkingFormat: "openai",
|
|
headers: {
|
|
"User-Agent": "CLI/2.108.1 CodeBuddy/2.108.1",
|
|
"X-Product": "SaaS",
|
|
"X-IDE-Type": "CLI",
|
|
"X-IDE-Name": "CLI",
|
|
"x-requested-with": "XMLHttpRequest",
|
|
"x-codebuddy-request": "1",
|
|
},
|
|
auth: {
|
|
combined: true,
|
|
header: "Authorization",
|
|
scheme: "bearer",
|
|
},
|
|
// Quota endpoint differs from the chat gateway: POST returns nested Tencent
|
|
// billing payload (data.Response.Data.Accounts[]). See services/usage/codebuddy-cn.js.
|
|
usage: {
|
|
url: "https://copilot.tencent.com/v2/billing/meter/get-user-resource",
|
|
},
|
|
},
|
|
models: [
|
|
{ id: "glm-5.2", name: "GLM-5.2" },
|
|
{ id: "glm-5.1", name: "GLM-5.1" },
|
|
{ id: "glm-5.0", name: "GLM-5.0" },
|
|
{ id: "glm-5.0-turbo", name: "GLM-5.0-Turbo" },
|
|
{ id: "glm-5v-turbo", name: "GLM-5v-Turbo" },
|
|
{ id: "glm-4.7", name: "GLM-4.7" },
|
|
{ id: "minimax-m3", name: "MiniMax-M3" },
|
|
{ id: "minimax-m2.7", name: "MiniMax-M2.7" },
|
|
{ id: "kimi-k2.7", name: "Kimi-K2.7-Code" },
|
|
{ id: "kimi-k2.6", name: "Kimi-K2.6" },
|
|
{ id: "kimi-k2.5", name: "Kimi-K2.5" },
|
|
{ id: "hy3-preview", name: "Hy3 Preview" },
|
|
{ id: "deepseek-v4-pro", name: "DeepSeek-V4-Pro" },
|
|
{ id: "deepseek-v4-flash", name: "DeepSeek-V4-Flash" },
|
|
{ id: "deepseek-v3-2-volc", name: "DeepSeek-V3.2" },
|
|
],
|
|
oauth: {
|
|
baseUrl: "https://copilot.tencent.com",
|
|
stateUrl: "https://copilot.tencent.com/v2/plugin/auth/state",
|
|
tokenUrl: "https://copilot.tencent.com/v2/plugin/auth/token",
|
|
refreshUrl: "https://copilot.tencent.com/v2/plugin/auth/token/refresh",
|
|
userAgent: "CLI/2.63.2 CodeBuddy/2.63.2",
|
|
platform: "CLI",
|
|
pollInterval: 5000,
|
|
},
|
|
features: {
|
|
usage: true,
|
|
usageApikey: true,
|
|
},
|
|
};
|