修复算力模型采样默认值

This commit is contained in:
2026-04-25 21:39:51 +08:00
parent 10465e3570
commit 380e99c577
24 changed files with 1413 additions and 508 deletions

View File

@@ -17,10 +17,12 @@
{
"modelName": "deepseek-chat",
"displayName": "DeepSeek V3.2",
"serviceType": ["chat"],
"description": "高性价比通用对话模型64K 上下文",
"contextWindow": 64000,
"maxOutputTokens": 8000,
"serviceType": [
"chat"
],
"description": "高性价比通用对话模型128K 上下文",
"contextWindow": 128000,
"maxOutputTokens": 8192,
"capabilities": [
"chat",
"code",
@@ -28,18 +30,22 @@
"multilingual"
],
"inputPrice": 2,
"outputPrice": 8,
"outputPrice": 3,
"defaultTemperature": 1,
"defaultTopP": 1,
"extra": {}
"extra": {
"cacheHitPrice": 0.2
}
},
{
"modelName": "deepseek-reasoner",
"displayName": "DeepSeek R1",
"serviceType": ["reasoning"],
"description": "DeepSeek R1 推理模型64K 上下文,深度推理能力,思维链最长 32K",
"contextWindow": 64000,
"maxOutputTokens": 8192,
"serviceType": [
"reasoning"
],
"description": "DeepSeek V3.2 思考模式128K 上下文,思维链默认 32K最大输出 64K",
"contextWindow": 128000,
"maxOutputTokens": 65536,
"capabilities": [
"chat",
"reasoning",
@@ -49,9 +55,9 @@
],
"inputPrice": 4,
"outputPrice": 16,
"defaultTemperature": 1,
"defaultTopP": 1,
"extra": {}
"extra": {
"cacheHitPrice": 0.2
}
}
]
}