mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 05:31:47 +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>
48 lines
2.2 KiB
JavaScript
48 lines
2.2 KiB
JavaScript
export default {
|
|
id: "bazaarlink",
|
|
alias: "bzl",
|
|
aliases: ["bazaar-link"],
|
|
uiAlias: "bzl",
|
|
category: "freeTier",
|
|
authType: "apikey",
|
|
authModes: ["apikey"],
|
|
display: {
|
|
name: "Bazaarlink",
|
|
icon: "storefront",
|
|
color: "#DC2626",
|
|
textIcon: "BZ",
|
|
website: "https://bazaarlink.ai",
|
|
notice: { apiKeyUrl: "https://bazaarlink.ai" },
|
|
},
|
|
transport: {
|
|
baseUrl: "https://bazaarlink.ai/api/v1/chat/completions",
|
|
validateUrl: "https://bazaarlink.ai/api/v1/models",
|
|
},
|
|
models: [
|
|
{ id: "auto:free", name: "Auto Free (Zero Cost)" },
|
|
{ id: "claude-opus-4.7", name: "Claude Opus 4.7", contextLength: 1000000 },
|
|
{ id: "claude-sonnet-4.6", name: "Claude Sonnet 4.6", contextLength: 1000000 },
|
|
{ id: "claude-haiku-4.5", name: "Claude Haiku 4.5", contextLength: 200000 },
|
|
{ id: "gpt-5.5", name: "GPT-5.5", contextLength: 1050000 },
|
|
{ id: "gpt-5.4", name: "GPT-5.4", contextLength: 1050000 },
|
|
{ id: "gpt-5.4-mini", name: "GPT-5.4 Mini", contextLength: 400000 },
|
|
{ id: "gpt-5.4-nano", name: "GPT-5.4 Nano", contextLength: 400000 },
|
|
{ id: "grok-4.3", name: "Grok 4.3", contextLength: 1000000 },
|
|
{ id: "grok-4.20", name: "Grok 4.20", contextLength: 2000000 },
|
|
{ id: "gemini-3.1-pro-preview", name: "Gemini 3.1 Pro", contextLength: 1048576 },
|
|
{ id: "gemini-3-flash-preview", name: "Gemini 3 Flash", contextLength: 1048576 },
|
|
{ id: "gemini-3.1-flash-lite-preview", name: "Gemini 3.1 Flash Lite", contextLength: 1048576 },
|
|
{ id: "kimi-k2.6", name: "Kimi K2.6", contextLength: 262144 },
|
|
{ id: "kimi-k2.5", name: "Kimi K2.5", contextLength: 262144 },
|
|
{ id: "glm-5.1", name: "GLM 5.1", contextLength: 204800 },
|
|
{ id: "glm-5", name: "GLM 5", contextLength: 204800 },
|
|
{ id: "mimo-v2.5-pro", name: "MiMo-V2.5-Pro", contextLength: 1050000 },
|
|
{ id: "mimo-v2.5", name: "MiMo-V2.5", contextLength: 1050000 },
|
|
{ id: "minimax-m3", name: "MiniMax M3", contextLength: 1048576 },
|
|
{ id: "minimax-m2.7", name: "MiniMax M2.7", contextLength: 204800 },
|
|
{ id: "minimax-m2.5", name: "MiniMax M2.5", contextLength: 204800 },
|
|
{ id: "qwen3.6-plus", name: "Qwen 3.6 Plus", contextLength: 1000000 },
|
|
{ id: "nemotron-3-super-120b-a12b", name: "Nemotron 3 Super", contextLength: 1000000 },
|
|
],
|
|
};
|