feat: support siliconflow config

This commit is contained in:
weipengzou
2025-07-16 05:33:35 +08:00
parent 4d81734ceb
commit 82d6d420b3

View File

@@ -85,6 +85,23 @@ ccr code
"transformer": { "transformer": {
"use": ["deepseek"] "use": ["deepseek"]
} }
},
{
"name": "siliconflow",
// IMPORTANT: api_base_url must be a complete (full) URL.
"api_base_url": "https://api.siliconflow.cn/v1/chat/completions",
"api_key": "sk-xxx",
"models": ["moonshotai/Kimi-K2-Instruct"],
"transformer": {
"use": [
[
"maxtoken",
{
"max_tokens": 16384,// for siliconflow max_tokens
}
]
]
}
} }
], ],
"Router": { "Router": {