mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 05:31:47 +00:00
- Single-source registry: oauth clientId/tokenUrl, usage URLs, image/embed configs, search defaultModel, codex fixedPort, google token url derive. - Remove 29 unused OmniRoute providers (registry 100→71); media intact. - De-adhoc: codex literals → registry format/oauth flags; reasoningInject, image/embed openrouter headers + xai bodyFields config-driven. - Add REGISTRY_TEMPLATE.js + expand PROVIDER_DEFAULTS/schema JSDoc. - Baselines updated; PROVIDERS 62 + alias 90 byte-for-byte, golden snapshots. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
762 B
JavaScript
19 lines
762 B
JavaScript
|
|
export default {
|
|
"id": "codebuddy", display: { name: "CodeBuddy", icon: "smart_toy", color: "#006EFF", website: "https://copilot.tencent.com", notice: { signupUrl: "https://copilot.tencent.com" } },
|
|
category: "oauth",
|
|
"transport": {
|
|
"baseUrl": "https://copilot.tencent.com/v1/chat/completions",
|
|
auth: {"combined":true,"header":"Authorization","scheme":"bearer"},
|
|
},
|
|
"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
|
|
}
|
|
};
|