mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-06-06 08:30:51 +08:00
修复算力模型采样默认值
This commit is contained in:
@@ -15,12 +15,14 @@
|
||||
],
|
||||
"models": [
|
||||
{
|
||||
"modelName": "claude-opus-4-6",
|
||||
"displayName": "Claude Opus 4.6",
|
||||
"serviceType": ["chat"],
|
||||
"description": "Anthropic 最新旗舰 Opus 模型,最强能力",
|
||||
"contextWindow": 200000,
|
||||
"maxOutputTokens": 32768,
|
||||
"modelName": "claude-opus-4-7",
|
||||
"displayName": "Claude Opus 4.7",
|
||||
"serviceType": [
|
||||
"chat"
|
||||
],
|
||||
"description": "Anthropic 当前最强通用模型,适合复杂推理和智能体编码任务",
|
||||
"contextWindow": 1000000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": [
|
||||
"chat",
|
||||
"reasoning",
|
||||
@@ -31,83 +33,73 @@
|
||||
"inputPrice": 5,
|
||||
"outputPrice": 25,
|
||||
"defaultTemperature": 1,
|
||||
"extra": {}
|
||||
"extra": {
|
||||
"cachePricing": {
|
||||
"write5m": 6.25,
|
||||
"write1h": 10,
|
||||
"read": 0.5
|
||||
},
|
||||
"pricingNotes": "Prices are per 1M tokens. Opus 4.7 includes the full 1M context window at standard pricing."
|
||||
}
|
||||
},
|
||||
{
|
||||
"modelName": "claude-opus-4-5",
|
||||
"displayName": "Claude Opus 4.5",
|
||||
"serviceType": ["chat"],
|
||||
"description": "Anthropic Opus 4.5,顶级推理能力",
|
||||
"contextWindow": 200000,
|
||||
"maxOutputTokens": 32768,
|
||||
"capabilities": [
|
||||
"modelName": "claude-sonnet-4-6",
|
||||
"displayName": "Claude Sonnet 4.6",
|
||||
"serviceType": [
|
||||
"chat",
|
||||
"reasoning",
|
||||
"code",
|
||||
"vision",
|
||||
"tool_use"
|
||||
"computer_use"
|
||||
],
|
||||
"inputPrice": 5,
|
||||
"outputPrice": 25,
|
||||
"defaultTemperature": 1,
|
||||
"extra": {}
|
||||
},
|
||||
{
|
||||
"modelName": "claude-sonnet-4-5",
|
||||
"displayName": "Claude Sonnet 4.5",
|
||||
"serviceType": ["chat"],
|
||||
"description": "Anthropic Sonnet 4.5,高性能性价比",
|
||||
"contextWindow": 200000,
|
||||
"description": "Anthropic 高智能高速度模型,适合编码、工具使用和智能体任务",
|
||||
"contextWindow": 1000000,
|
||||
"maxOutputTokens": 64000,
|
||||
"capabilities": [
|
||||
"chat",
|
||||
"reasoning",
|
||||
"code",
|
||||
"vision",
|
||||
"tool_use"
|
||||
],
|
||||
"inputPrice": 3,
|
||||
"outputPrice": 15,
|
||||
"defaultTemperature": 1,
|
||||
"extra": {}
|
||||
},
|
||||
{
|
||||
"modelName": "claude-sonnet-4",
|
||||
"displayName": "Claude Sonnet 4",
|
||||
"serviceType": ["chat"],
|
||||
"description": "Anthropic Sonnet 4 旗舰模型",
|
||||
"contextWindow": 200000,
|
||||
"maxOutputTokens": 64000,
|
||||
"capabilities": [
|
||||
"chat",
|
||||
"reasoning",
|
||||
"code",
|
||||
"vision",
|
||||
"tool_use"
|
||||
],
|
||||
"inputPrice": 3,
|
||||
"outputPrice": 15,
|
||||
"defaultTemperature": 1,
|
||||
"extra": {}
|
||||
},
|
||||
{
|
||||
"modelName": "claude-sonnet-4-5-computer",
|
||||
"displayName": "Claude Sonnet 4.5 Computer Use",
|
||||
"serviceType": ["computer_use"],
|
||||
"description": "Anthropic 最佳 Computer Use 模型",
|
||||
"contextWindow": 200000,
|
||||
"maxOutputTokens": 64000,
|
||||
"capabilities": [
|
||||
"chat",
|
||||
"vision",
|
||||
"computer_use",
|
||||
"tool_use",
|
||||
"reasoning"
|
||||
"computer_use"
|
||||
],
|
||||
"inputPrice": 3,
|
||||
"outputPrice": 15,
|
||||
"defaultTemperature": 1,
|
||||
"extra": {}
|
||||
"extra": {
|
||||
"cachePricing": {
|
||||
"write5m": 3.75,
|
||||
"write1h": 6,
|
||||
"read": 0.3
|
||||
},
|
||||
"pricingNotes": "Prices are per 1M tokens. Sonnet 4.6 includes the full 1M context window at standard pricing."
|
||||
}
|
||||
},
|
||||
{
|
||||
"modelName": "claude-haiku-4-5",
|
||||
"displayName": "Claude Haiku 4.5",
|
||||
"serviceType": [
|
||||
"chat"
|
||||
],
|
||||
"description": "Anthropic 最快模型,具备接近前沿模型的智能水平",
|
||||
"contextWindow": 200000,
|
||||
"maxOutputTokens": 64000,
|
||||
"capabilities": [
|
||||
"chat",
|
||||
"reasoning",
|
||||
"code",
|
||||
"vision",
|
||||
"tool_use"
|
||||
],
|
||||
"inputPrice": 1,
|
||||
"outputPrice": 5,
|
||||
"defaultTemperature": 1,
|
||||
"extra": {
|
||||
"modelId": "claude-haiku-4-5-20251001",
|
||||
"cachePricing": {
|
||||
"write5m": 1.25,
|
||||
"write1h": 2,
|
||||
"read": 0.1
|
||||
},
|
||||
"pricingNotes": "Prices are per 1M tokens."
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user