mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +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>
35 lines
806 B
JavaScript
35 lines
806 B
JavaScript
export default {
|
|
id: "llm7",
|
|
alias: "llm7",
|
|
aliases: [
|
|
"llm-7",
|
|
],
|
|
uiAlias: "llm7",
|
|
display: {
|
|
name: "LLM7",
|
|
icon: "pool",
|
|
color: "#7C3AED",
|
|
textIcon: "L7",
|
|
website: "https://llm7.io",
|
|
notice: {
|
|
apiKeyUrl: "https://llm7.io",
|
|
},
|
|
},
|
|
category: "freeTier",
|
|
authType: "apikey",
|
|
authModes: [
|
|
"apikey",
|
|
],
|
|
transport: {
|
|
baseUrl: "https://api.llm7.io/v1/chat/completions",
|
|
validateUrl: "https://api.llm7.io/v1/models",
|
|
},
|
|
models: [
|
|
{ id: "gpt-4o-mini-2024-07-18", name: "GPT-4o mini (LLM7)" },
|
|
{ id: "gpt-4.1-nano-2025-04-14", name: "GPT-4.1 nano (LLM7)" },
|
|
{ id: "deepseek-r1-0528", name: "DeepSeek R1 (LLM7)" },
|
|
{ id: "qwen2.5-coder-32b-instruct", name: "Qwen2.5 Coder 32B (LLM7)" },
|
|
],
|
|
passthroughModels: true,
|
|
};
|