mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
- Bug B1-B7: media UI m.kind||m.type, serviceKinds, gemini mediaPriority, schema kind, models/info lookup by kind - Dead code D1-D6: safeParseJSON, drop PROVIDER_ENDPOINTS, orphan fetcher, GITHUB_CONFIG derive, getProviderConfig internal, legacy kiro file - Translator concerns: toOpenAIUsage, toOpenAIFinish (gemini/kiro/ollama + fix kiro tool finish), thinking effort maps - Reorg helpers/ → concerns/ (logic) + formats/ (per-format) + schema/ (pure enums: roles/blocks/finishReasons/defaults) - Wire ~280 hardcoded role/block/finish/default literals to schema enums across 20+ files - collapseTextParts + extractTextContent dedup - Normalize translator fn names to openaiToXRequest / xToOpenAIResponse - Golden tests lock behavior; 0 regression (byte-for-byte providers/alias, 26=26 known fails) Co-authored-by: Cursor <cursoragent@cursor.com>
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
export default {
|
|
id: "byteplus",
|
|
priority: 150,
|
|
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"],
|
|
};
|