mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
- 100 registry files: transport + models co-located per provider (Mongoose-style) - providers/shared.js: shared Claude headers + OS/arch helpers (deduped) - providers/models/helpers.js: withCodexReviewModels (kept dynamic) - providers/index.js builds PROVIDERS + PROVIDER_MODELS = old API (content byte-for-byte) - config/providers.js + providerModels.js → barrel re-export, keep accessors + runtime helpers - Verified: PROVIDERS/MODELS/OAuth/alias byte-for-byte, golden translator tests pass, 0 new regression Co-authored-by: Cursor <cursoragent@cursor.com>
74 lines
1.5 KiB
JavaScript
74 lines
1.5 KiB
JavaScript
export default {
|
|
"id": "siliconflow",
|
|
"alias": "siliconflow",
|
|
"transport": {
|
|
"baseUrl": "https://api.siliconflow.com/v1/chat/completions"
|
|
},
|
|
"models": [
|
|
{
|
|
"id": "deepseek-ai/DeepSeek-V4-Pro",
|
|
"name": "DeepSeek V4 Pro"
|
|
},
|
|
{
|
|
"id": "deepseek-ai/DeepSeek-V4-Flash",
|
|
"name": "DeepSeek V4 Flash"
|
|
},
|
|
{
|
|
"id": "deepseek-ai/DeepSeek-V3.2",
|
|
"name": "DeepSeek V3.2"
|
|
},
|
|
{
|
|
"id": "deepseek-ai/DeepSeek-V3.2-Exp",
|
|
"name": "DeepSeek V3.2 Exp"
|
|
},
|
|
{
|
|
"id": "deepseek-ai/DeepSeek-V3.1",
|
|
"name": "DeepSeek V3.1"
|
|
},
|
|
{
|
|
"id": "deepseek-ai/DeepSeek-V3.1-Terminus",
|
|
"name": "DeepSeek V3.1 Terminus"
|
|
},
|
|
{
|
|
"id": "deepseek-ai/DeepSeek-R1",
|
|
"name": "DeepSeek R1"
|
|
},
|
|
{
|
|
"id": "Qwen/Qwen3.5-397B-A17B",
|
|
"name": "Qwen 3.5 397B A17B"
|
|
},
|
|
{
|
|
"id": "Qwen/Qwen3.5-122B-A10B",
|
|
"name": "Qwen 3.5 122B A10B"
|
|
},
|
|
{
|
|
"id": "zai-org/GLM-5.1",
|
|
"name": "GLM 5.1"
|
|
},
|
|
{
|
|
"id": "zai-org/GLM-5",
|
|
"name": "GLM 5"
|
|
},
|
|
{
|
|
"id": "moonshotai/Kimi-K2.6",
|
|
"name": "Kimi K2.6"
|
|
},
|
|
{
|
|
"id": "moonshotai/Kimi-K2.5",
|
|
"name": "Kimi K2.5"
|
|
},
|
|
{
|
|
"id": "openai/gpt-oss-120b",
|
|
"name": "GPT OSS 120B"
|
|
},
|
|
{
|
|
"id": "MiniMaxAI/MiniMax-M2.5",
|
|
"name": "MiniMax M2.5"
|
|
},
|
|
{
|
|
"id": "inclusionAI/Ling-flash-2.0",
|
|
"name": "Ling Flash 2.0"
|
|
}
|
|
]
|
|
};
|