mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +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>
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
export default {
|
|
id: "byteplus",
|
|
priority: 70,
|
|
alias: "byteplus",
|
|
aliases: [
|
|
"bpm",
|
|
],
|
|
uiAlias: "bpm",
|
|
display: {
|
|
name: "BytePlus ModelArk",
|
|
icon: "cloud",
|
|
color: "#2563EB",
|
|
textIcon: "BP",
|
|
website: "https://console.byteplus.com/ark",
|
|
notice: {
|
|
text: "Free credits for new accounts. Access to Seed 2.0, Kimi K2 Thinking, GLM 4.7, GPT-OSS-120B models.",
|
|
apiKeyUrl: "https://console.byteplus.com/ark/region:ark+ap-southeast-1/apiKey",
|
|
},
|
|
},
|
|
category: "freeTier",
|
|
transport: {
|
|
baseUrl: "https://ark.ap-southeast.bytepluses.com/api/coding/v3/chat/completions",
|
|
headers: {},
|
|
},
|
|
models: [
|
|
{ id: "seed-2-0-pro-260328", name: "Seed 2.0 Pro" },
|
|
{ id: "seed-2-0-code-preview-260328", name: "Seed 2.0 Code Preview" },
|
|
{ id: "seed-2-0-mini-260215", name: "Seed 2.0 Mini" },
|
|
{ id: "seed-2-0-lite-260228", name: "Seed 2.0 Lite" },
|
|
{ id: "kimi-k2-thinking-251104", name: "Kimi K2 Thinking" },
|
|
{ id: "glm-4-7-251222", name: "GLM 4.7" },
|
|
{ id: "gpt-oss-120b-250805", name: "GPT-OSS-120B" },
|
|
],
|
|
serviceKinds: ["llm"],
|
|
};
|