From a35b268011576f45373b5b818ee8383201e4d43c Mon Sep 17 00:00:00 2001 From: yi-ge Date: Thu, 19 Mar 2026 23:17:37 +0800 Subject: [PATCH] feat: add MiniMax M2.7 to official minimax provider --- compute/providers/minimax.json | 35 ++++++++++++++++++++++++++++++++++ manifest.json | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/compute/providers/minimax.json b/compute/providers/minimax.json index 27a638b..db94fde 100644 --- a/compute/providers/minimax.json +++ b/compute/providers/minimax.json @@ -11,6 +11,41 @@ "priceCurrency": "CNY", "services": ["chat", "fast", "reasoning"], "models": [ + { + "modelName": "MiniMax-M2.7", + "displayName": "MiniMax M2.7", + "serviceType": ["chat", "reasoning"], + "description": "MiniMax 新一代旗舰模型,擅长复杂 Agent、软件工程与专业办公任务", + "contextWindow": 204800, + "maxOutputTokens": 131072, + "capabilities": [ + "chat", + "reasoning", + "code", + "tool_use" + ], + "defaultTemperature": 1, + "defaultTopP": 1, + "extra": {} + }, + { + "modelName": "MiniMax-M2.7-highspeed", + "displayName": "MiniMax M2.7 高速版", + "serviceType": ["fast"], + "description": "MiniMax M2.7 极速版,效果一致,输出更快,适合低延迟场景", + "contextWindow": 204800, + "maxOutputTokens": 131072, + "capabilities": [ + "chat", + "reasoning", + "code", + "tool_use", + "fast" + ], + "defaultTemperature": 1, + "defaultTopP": 1, + "extra": {} + }, { "modelName": "MiniMax-M2.5", "displayName": "MiniMax M2.5", diff --git a/manifest.json b/manifest.json index e02d846..e452b9a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "presetDataVersion": 13, + "presetDataVersion": 14, "updatedAt": "2026-03-19", "description": "DesireCore 官方配置中心" }