Files
config-center/compute/providers/deepseek.json
yi-ge e2f4a6935c refactor: defaultTemperature/defaultTopP 从 Provider 级别迁移到 Model 级别
- 删除所有 Provider 顶层的 defaultTemperature / defaultTopP
- 为所有对话类模型添加 model 级别的推荐温度参数(基于官方文档)
- volcengine:将 extra 内温度参数提升到模型顶层正式字段
- presetDataVersion 7→8

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 18:57:13 +08:00

58 lines
1.3 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"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": {}
}
]
}