mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00: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>
28 lines
682 B
JavaScript
28 lines
682 B
JavaScript
// Xiaomi ended the free MiMo channel ("MiMo free API service has ended").
|
|
// Hidden until/unless a replacement (OAuth MiMo Platform) is wired.
|
|
export default {
|
|
id: "mimo-free",
|
|
hidden: true,
|
|
priority: 50,
|
|
hasFree: true,
|
|
alias: "mmf",
|
|
uiAlias: "mmf",
|
|
display: {
|
|
name: "MiMo Code Free",
|
|
icon: "smart_toy",
|
|
color: "#FF6900",
|
|
textIcon: "MF",
|
|
},
|
|
category: "free",
|
|
noAuth: true,
|
|
transport: {
|
|
baseUrl: "https://api.xiaomimimo.com/api/free-ai/openai/chat",
|
|
noAuth: true,
|
|
},
|
|
models: [
|
|
{ id: "mimo-auto", name: "MiMo Auto" },
|
|
],
|
|
modelsFetcher: { url: "https://models.dev/api.json", type: "mimo-free" },
|
|
passthroughModels: true,
|
|
};
|