Files
heicode/src/server/config/providerPresets.json
T
gongzhiyong a09d909dcd
Deploy VitePress Docs / build (push) Failing after 1m49s
Deploy VitePress Docs / deploy (push) Has been skipped
feat: rebrand to HeiCode and add dual-provider auth flow
Rebrand cc-haha to HeiCode and implement TaijiAICloud/ClawdRouter login foundations across server and desktop, including provider presets, model discovery endpoints, and login UI/store scaffolding for OAuth and token paste flows.
2026-04-29 19:08:06 +08:00

59 lines
1.8 KiB
JSON

[
{
"id": "official",
"name": "Claude Official",
"baseUrl": "",
"apiFormat": "anthropic",
"defaultModels": {
"main": "",
"haiku": "",
"sonnet": "",
"opus": ""
},
"needsApiKey": false,
"websiteUrl": "https://www.anthropic.com/claude-code"
},
{
"id": "taijiaicloud",
"name": "TaijiAICloud",
"baseUrl": "https://api.taijiaicloud.com",
"apiFormat": "anthropic",
"defaultModels": {
"main": "claude-sonnet-4-6",
"haiku": "claude-haiku-4-5-20251001",
"sonnet": "claude-sonnet-4-6",
"opus": "claude-opus-4-6"
},
"needsApiKey": true,
"websiteUrl": "https://api.taijiaicloud.com",
"apiKeyUrl": "https://api.taijiaicloud.com/dashboard/keys",
"promoText": "TaijiAICloud 是 HeiCode 推荐的国内 LLM 网关,原生支持 Anthropic /v1/messages 协议,覆盖 GPT / Claude / Gemini 等主流模型。",
"featured": true,
"defaultEnv": {
"API_TIMEOUT_MS": "3000000",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1"
}
},
{
"id": "clawdrouter",
"name": "ClawdRouter",
"baseUrl": "https://api.clawdrouter.com",
"apiFormat": "anthropic",
"defaultModels": {
"main": "claude-sonnet-4-6",
"haiku": "claude-haiku-4-5-20251001",
"sonnet": "claude-sonnet-4-6",
"opus": "claude-opus-4-6"
},
"needsApiKey": true,
"websiteUrl": "https://www.clawdrouter.com",
"apiKeyUrl": "https://www.clawdrouter.com/dashboard/keys",
"promoText": "ClawdRouter 双协议聚合网关,同时支持 Anthropic /v1/messages 与 OpenAI /v1/chat/completions,覆盖 OpenAI / Anthropic / Google 全家桶。",
"featured": true,
"defaultEnv": {
"API_TIMEOUT_MS": "3000000",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1"
}
}
]