mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
Update model lists and context lengths across free/apikey providers, move bazaarlink, kilo-gateway, and kimchi into freeTier, demote llm7 to apikey, and hide bluesminds, sambanova, zed, and mimo-free. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
export default {
|
|
id: "kilo-gateway",
|
|
alias: "kgw",
|
|
aliases: [
|
|
"kilo-gateway",
|
|
"kilogateway",
|
|
],
|
|
uiAlias: "kgw",
|
|
category: "freeTier",
|
|
display: {
|
|
name: "Kilo Gateway",
|
|
icon: "login",
|
|
color: "#8B5CF6",
|
|
textIcon: "KG",
|
|
website: "https://kilo.ai",
|
|
notice: {
|
|
apiKeyUrl: "https://kilo.ai/dashboard?tab=apiKeys",
|
|
},
|
|
},
|
|
authType: "apikey",
|
|
authModes: ["apikey"],
|
|
transport: {
|
|
baseUrl: "https://api.kilo.ai/api/gateway/chat/completions",
|
|
validateUrl: "https://api.kilo.ai/api/gateway/models",
|
|
},
|
|
models: [
|
|
{ id: "kilo-auto/free", name: "Kilo Auto Free", contextLength: 256000 },
|
|
{ id: "nvidia/nemotron-3-super-120b-a12b:free", name: "Nemotron 3 Super 120B (Free)", contextLength: 262144 },
|
|
{ id: "nvidia/nemotron-3-ultra-550b-a55b:free", name: "Nemotron 3 Ultra 550B (Free)", contextLength: 1000000 },
|
|
{ id: "kwaipilot/kat-coder-pro-v2.5:free", name: "Kat Coder Pro v2.5 (Free)", contextLength: 256000 },
|
|
{ id: "kilo-auto/frontier", name: "Kilo Auto Frontier", contextLength: 1000000 },
|
|
{ id: "kilo-auto/balanced", name: "Kilo Auto Balanced", contextLength: 1000000 },
|
|
],
|
|
};
|