mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-02-28 10:38:12 +08:00
- 删除所有 Provider 顶层的 defaultTemperature / defaultTopP - 为所有对话类模型添加 model 级别的推荐温度参数(基于官方文档) - volcengine:将 extra 内温度参数提升到模型顶层正式字段 - presetDataVersion 7→8 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
58 lines
1.3 KiB
JSON
58 lines
1.3 KiB
JSON
{
|
||
"id": "provider-deepseek-001",
|
||
"provider": "deepseek",
|
||
"label": "DeepSeek",
|
||
"baseUrl": "https://api.deepseek.com/v1",
|
||
"apiFormat": "openai-completions",
|
||
"apiKeyRef": "deepseek",
|
||
"apiKeyVerified": false,
|
||
"enabled": false,
|
||
"status": "unconfigured",
|
||
"priceCurrency": "CNY",
|
||
"services": [
|
||
"chat",
|
||
"reasoning"
|
||
],
|
||
"models": [
|
||
{
|
||
"modelName": "deepseek-chat",
|
||
"displayName": "DeepSeek V3.2",
|
||
"serviceType": ["chat"],
|
||
"description": "高性价比通用对话模型,64K 上下文",
|
||
"contextWindow": 64000,
|
||
"maxOutputTokens": 8000,
|
||
"capabilities": [
|
||
"chat",
|
||
"code",
|
||
"reasoning",
|
||
"multilingual"
|
||
],
|
||
"inputPrice": 2,
|
||
"outputPrice": 8,
|
||
"defaultTemperature": 1,
|
||
"defaultTopP": 1,
|
||
"extra": {}
|
||
},
|
||
{
|
||
"modelName": "deepseek-reasoner",
|
||
"displayName": "DeepSeek R1",
|
||
"serviceType": ["reasoning"],
|
||
"description": "DeepSeek R1 推理模型,64K 上下文,深度推理能力,思维链最长 32K",
|
||
"contextWindow": 64000,
|
||
"maxOutputTokens": 8192,
|
||
"capabilities": [
|
||
"chat",
|
||
"reasoning",
|
||
"deep_thinking",
|
||
"code",
|
||
"math"
|
||
],
|
||
"inputPrice": 4,
|
||
"outputPrice": 16,
|
||
"defaultTemperature": 1,
|
||
"defaultTopP": 1,
|
||
"extra": {}
|
||
}
|
||
]
|
||
}
|