mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
Register 9 new upstream providers with logos and update the auto-generated registry index. Refresh providers/alias baselines and extend the alias token allowlist so verify-alias stays green. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
31 lines
849 B
JavaScript
31 lines
849 B
JavaScript
export default {
|
|
id: "sambanova",
|
|
alias: "samba",
|
|
aliases: ["sambanova-ai"],
|
|
uiAlias: "samba",
|
|
display: {
|
|
name: "SambaNova",
|
|
icon: "memory",
|
|
color: "#F97316",
|
|
textIcon: "SN",
|
|
website: "https://sambanova.ai",
|
|
notice: {
|
|
apiKeyUrl: "https://cloud.sambanova.ai/apis",
|
|
},
|
|
},
|
|
category: "apikey",
|
|
authType: "apikey",
|
|
authModes: ["apikey"],
|
|
transport: {
|
|
baseUrl: "https://api.sambanova.ai/v1/chat/completions",
|
|
validateUrl: "https://api.sambanova.ai/v1/models",
|
|
},
|
|
models: [
|
|
{ id: "MiniMax-M2.7", name: "MiniMax M2.7" },
|
|
{ id: "DeepSeek-V3.2", name: "DeepSeek V3.2" },
|
|
{ id: "Llama-4-Maverick-17B-128E-Instruct", name: "Llama 4 Maverick 17B 128E" },
|
|
{ id: "Meta-Llama-3.3-70B-Instruct", name: "Meta Llama 3.3 70B" },
|
|
{ id: "gpt-oss-120b", name: "GPT-OSS 120B" },
|
|
],
|
|
};
|