mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-02-28 12:18:26 +08:00
feat: 添加 MiniMax Provider 配置,presetDataVersion 升至 5
This commit is contained in:
103
compute/providers/minimax.json
Normal file
103
compute/providers/minimax.json
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
{
|
||||||
|
"id": "provider-minimax-001",
|
||||||
|
"provider": "minimax",
|
||||||
|
"label": "MiniMax",
|
||||||
|
"baseUrl": "https://api.minimax.io/v1",
|
||||||
|
"apiFormat": "openai-completions",
|
||||||
|
"apiKeyRef": "minimax",
|
||||||
|
"apiKeyVerified": false,
|
||||||
|
"enabled": false,
|
||||||
|
"status": "unconfigured",
|
||||||
|
"services": ["chat", "fast", "reasoning"],
|
||||||
|
"defaultTemperature": 1,
|
||||||
|
"defaultTopP": 1,
|
||||||
|
"models": [
|
||||||
|
{
|
||||||
|
"modelName": "MiniMax-M2.5",
|
||||||
|
"displayName": "MiniMax M2.5",
|
||||||
|
"serviceType": ["chat", "reasoning"],
|
||||||
|
"description": "MiniMax 最新旗舰模型,百万级上下文,支持深度推理和工具调用",
|
||||||
|
"contextWindow": 1000000,
|
||||||
|
"maxOutputTokens": 131072,
|
||||||
|
"capabilities": [
|
||||||
|
"chat",
|
||||||
|
"reasoning",
|
||||||
|
"code",
|
||||||
|
"tool_use",
|
||||||
|
"long_context"
|
||||||
|
],
|
||||||
|
"inputPrice": 0.20,
|
||||||
|
"outputPrice": 1.00,
|
||||||
|
"extra": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"modelName": "MiniMax-M2.5-highspeed",
|
||||||
|
"displayName": "MiniMax M2.5 高速版",
|
||||||
|
"serviceType": ["fast"],
|
||||||
|
"description": "MiniMax M2.5 高速推理版本,适合低延迟场景",
|
||||||
|
"contextWindow": 200000,
|
||||||
|
"maxOutputTokens": 131072,
|
||||||
|
"capabilities": [
|
||||||
|
"chat",
|
||||||
|
"reasoning",
|
||||||
|
"code",
|
||||||
|
"tool_use",
|
||||||
|
"fast"
|
||||||
|
],
|
||||||
|
"inputPrice": 0.30,
|
||||||
|
"outputPrice": 2.40,
|
||||||
|
"extra": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"modelName": "MiniMax-M2.1",
|
||||||
|
"displayName": "MiniMax M2.1",
|
||||||
|
"serviceType": ["chat"],
|
||||||
|
"description": "MiniMax 上一代主力模型,200K 上下文,性价比优秀",
|
||||||
|
"contextWindow": 204800,
|
||||||
|
"maxOutputTokens": 131072,
|
||||||
|
"capabilities": [
|
||||||
|
"chat",
|
||||||
|
"code",
|
||||||
|
"tool_use",
|
||||||
|
"reasoning"
|
||||||
|
],
|
||||||
|
"inputPrice": 0.27,
|
||||||
|
"outputPrice": 0.95,
|
||||||
|
"extra": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"modelName": "MiniMax-M2.1-highspeed",
|
||||||
|
"displayName": "MiniMax M2.1 高速版",
|
||||||
|
"serviceType": ["fast"],
|
||||||
|
"description": "MiniMax M2.1 高速推理版本,适合低延迟场景",
|
||||||
|
"contextWindow": 204800,
|
||||||
|
"maxOutputTokens": 131072,
|
||||||
|
"capabilities": [
|
||||||
|
"chat",
|
||||||
|
"code",
|
||||||
|
"tool_use",
|
||||||
|
"fast"
|
||||||
|
],
|
||||||
|
"inputPrice": 0.30,
|
||||||
|
"outputPrice": 2.40,
|
||||||
|
"extra": {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"modelName": "MiniMax-Text-01",
|
||||||
|
"displayName": "MiniMax Text 01",
|
||||||
|
"serviceType": ["chat"],
|
||||||
|
"description": "MiniMax 百万级长上下文文本模型,擅长长文档处理",
|
||||||
|
"contextWindow": 1000000,
|
||||||
|
"maxOutputTokens": 131072,
|
||||||
|
"capabilities": [
|
||||||
|
"chat",
|
||||||
|
"reasoning",
|
||||||
|
"code",
|
||||||
|
"long_context"
|
||||||
|
],
|
||||||
|
"inputPrice": 0.20,
|
||||||
|
"outputPrice": 1.10,
|
||||||
|
"extra": {}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"presetDataVersion": 3,
|
"presetDataVersion": 5,
|
||||||
"updatedAt": "2026-02-22",
|
"updatedAt": "2026-02-23",
|
||||||
"description": "DesireCore 官方配置中心"
|
"description": "DesireCore 官方配置中心"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user