mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 05:31:47 +00:00
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
export default {
|
|
id: "blackbox",
|
|
priority: 50,
|
|
alias: "blackbox",
|
|
aliases: [
|
|
"bb",
|
|
],
|
|
uiAlias: "bb",
|
|
display: {
|
|
name: "Blackbox AI",
|
|
icon: "smart_toy",
|
|
color: "#5B5FEF",
|
|
textIcon: "BB",
|
|
website: "https://blackbox.ai",
|
|
notice: {
|
|
apiKeyUrl: "https://www.blackbox.ai/api-management",
|
|
},
|
|
},
|
|
category: "apikey",
|
|
transport: {
|
|
baseUrl: "https://api.blackbox.ai/chat/completions",
|
|
thinkingFormat: "openai",
|
|
},
|
|
models: [
|
|
{ id: "gpt-4o", name: "GPT-4o" },
|
|
{ id: "gpt-4o-mini", name: "GPT-4o mini" },
|
|
{ id: "claude-sonnet-4.6", name: "Claude Sonnet 4.6" },
|
|
{ id: "claude-sonnet-4.5", name: "Claude Sonnet 4.5" },
|
|
{ id: "claude-opus-4.6", name: "Claude Opus 4.6" },
|
|
{ id: "claude-sonnet-4-6", name: "Claude Sonnet 4.6 (Legacy)" },
|
|
{ id: "claude-opus-4-6", name: "Claude Opus 4.6 (Legacy)" },
|
|
{ id: "deepseek-chat", name: "DeepSeek Chat" },
|
|
{ id: "deepseek-v3-671b", name: "DeepSeek V3 671B" },
|
|
{ id: "deepseek-r1", name: "DeepSeek R1" },
|
|
{ id: "o1", name: "OpenAI o1" },
|
|
{ id: "o3-mini", name: "OpenAI o3-mini" },
|
|
{ id: "gemini-2.5-flash", name: "Gemini 2.5 Flash" },
|
|
{ id: "gemini-3-flash-preview", name: "Gemini 3 Flash Preview" },
|
|
{ id: "qwen3-coder-plus", name: "Qwen3 Coder Plus" },
|
|
{ id: "qwen3-max", name: "Qwen3 Max" },
|
|
{ id: "qwen3-vl-plus", name: "Qwen3 VL Plus" },
|
|
],
|
|
};
|