- 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>
33 lines
830 B
JavaScript
33 lines
830 B
JavaScript
export default {
|
|
id: "codebuddy",
|
|
hidden: true,
|
|
priority: 90,
|
|
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,
|
|
},
|
|
};
|