修复算力模型采样默认值

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

@@ -9,12 +9,17 @@
"enabled": false,
"status": "unconfigured",
"priceCurrency": "USD",
"services": ["chat", "fast"],
"services": [
"chat",
"fast"
],
"models": [
{
"modelName": "mistral-large-latest",
"displayName": "Mistral Large 3",
"serviceType": ["chat"],
"serviceType": [
"chat"
],
"description": "Mistral 旗舰模型256K 上下文,支持视觉和工具调用",
"contextWindow": 256000,
"maxOutputTokens": 262144,
@@ -26,18 +31,20 @@
"tool_use",
"long_context"
],
"inputPrice": 0.50,
"outputPrice": 1.50,
"defaultTemperature": 1,
"inputPrice": 0.5,
"outputPrice": 1.5,
"defaultTemperature": 0.7,
"defaultTopP": 1,
"extra": {}
},
{
"modelName": "mistral-small-latest",
"displayName": "Mistral Small 3.2",
"serviceType": ["fast"],
"serviceType": [
"fast"
],
"description": "Mistral 高效小模型,低延迟,适合快速推理场景",
"contextWindow": 130000,
"contextWindow": 128000,
"maxOutputTokens": 8192,
"capabilities": [
"chat",
@@ -47,26 +54,28 @@
"fast",
"tool_use"
],
"inputPrice": 0.10,
"outputPrice": 0.30,
"defaultTemperature": 1,
"inputPrice": 0.1,
"outputPrice": 0.3,
"defaultTemperature": 0.7,
"defaultTopP": 1,
"extra": {}
},
{
"modelName": "codestral-latest",
"displayName": "Codestral",
"serviceType": ["chat"],
"serviceType": [
"chat"
],
"description": "Mistral 专业代码模型,支持 Fill-in-the-Middle 补全",
"contextWindow": 256000,
"contextWindow": 128000,
"maxOutputTokens": 32768,
"capabilities": [
"code",
"fill_in_the_middle"
],
"inputPrice": 0.30,
"outputPrice": 0.90,
"defaultTemperature": 1,
"inputPrice": 0.3,
"outputPrice": 0.9,
"defaultTemperature": 0.7,
"defaultTopP": 1,
"extra": {}
}