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>
30 lines
972 B
JavaScript
30 lines
972 B
JavaScript
export default {
|
|
id: "morph",
|
|
alias: "morph",
|
|
aliases: ["morphllm"],
|
|
uiAlias: "morph",
|
|
display: {
|
|
name: "Morph",
|
|
icon: "change_history",
|
|
color: "#14B8A6",
|
|
textIcon: "MP",
|
|
website: "https://morphllm.com",
|
|
notice: { apiKeyUrl: "https://morphllm.com" },
|
|
},
|
|
category: "apikey",
|
|
authType: "apikey",
|
|
authModes: ["apikey"],
|
|
transport: {
|
|
baseUrl: "https://api.morphllm.com/v1/chat/completions",
|
|
validateUrl: "https://api.morphllm.com/v1/models",
|
|
},
|
|
models: [
|
|
{ id: "morph-v3-large", name: "Morph v3 Large" },
|
|
{ id: "morph-v3-fast", name: "Morph v3 Fast" },
|
|
{ id: "morph-qwen35-397b", name: "Qwen 3.5 397B (Morph)", contextLength: 262144 },
|
|
{ id: "morph-minimax27-230b", name: "MiniMax M2.7 (Morph)", contextLength: 200704 },
|
|
{ id: "morph-qwen36-27b", name: "Qwen 3.6 27B (Morph)", contextLength: 262144 },
|
|
{ id: "morph-dsv4flash", name: "DeepSeek V4 Flash (Morph)", contextLength: 1048576 },
|
|
],
|
|
};
|