From 6a3a11fb1e18d1e4e4ff06e0c638c721851d8886 Mon Sep 17 00:00:00 2001 From: octo-patch Date: Tue, 2 Jun 2026 11:34:23 +0800 Subject: [PATCH] feat(provider): add MiniMax M3 model and prune deprecated M2.x variants Add MiniMax-M3 as the new default model and remove the deprecated M2, M2.1, M2.1-highspeed, M2.5, and M2.5-highspeed entries. Keeps M2.7 and M2.7-highspeed as legacy options for users still on the previous generation. --- crates/forge_repo/src/provider/provider.json | 58 +++----------------- 1 file changed, 9 insertions(+), 49 deletions(-) diff --git a/crates/forge_repo/src/provider/provider.json b/crates/forge_repo/src/provider/provider.json index d492d38696..7ce5e4f0d1 100644 --- a/crates/forge_repo/src/provider/provider.json +++ b/crates/forge_repo/src/provider/provider.json @@ -2507,28 +2507,18 @@ "url": "https://{{#if HOSTNAME}}{{HOSTNAME}}{{else}}api.minimax.io{{/if}}/anthropic/v1/messages", "models": [ { - "id": "MiniMax-M2.7", - "name": "MiniMax M2.7", - "description": "Peak performance model optimized for code generation and refactoring with advanced reasoning", - "context_length": 204800, - "tools_supported": true, - "supports_parallel_tool_calls": true, - "supports_reasoning": true, - "input_modalities": ["text"] - }, - { - "id": "MiniMax-M2.7-highspeed", - "name": "MiniMax M2.7 Highspeed", - "description": "Same performance as M2.7 with significantly faster inference (~100 tps)", - "context_length": 204800, + "id": "MiniMax-M3", + "name": "MiniMax M3", + "description": "Latest generation MiniMax model with enhanced reasoning, function calling, and extended context", + "context_length": 1048576, "tools_supported": true, "supports_parallel_tool_calls": true, "supports_reasoning": true, "input_modalities": ["text"] }, { - "id": "MiniMax-M2.5", - "name": "MiniMax M2.5", + "id": "MiniMax-M2.7", + "name": "MiniMax M2.7", "description": "Peak performance model optimized for code generation and refactoring with advanced reasoning", "context_length": 204800, "tools_supported": true, @@ -2537,39 +2527,9 @@ "input_modalities": ["text"] }, { - "id": "MiniMax-M2.5-highspeed", - "name": "MiniMax M2.5 Highspeed", - "description": "Same performance as M2.5 with significantly faster inference (~100 tps)", - "context_length": 204800, - "tools_supported": true, - "supports_parallel_tool_calls": true, - "supports_reasoning": true, - "input_modalities": ["text"] - }, - { - "id": "MiniMax-M2.1", - "name": "MiniMax M2.1", - "description": "230B total parameters with 10B activated per inference, optimized for code generation and refactoring", - "context_length": 204800, - "tools_supported": true, - "supports_parallel_tool_calls": true, - "supports_reasoning": true, - "input_modalities": ["text"] - }, - { - "id": "MiniMax-M2.1-highspeed", - "name": "MiniMax M2.1 Highspeed", - "description": "Same performance as M2.1 with significantly faster inference (~100 tps)", - "context_length": 204800, - "tools_supported": true, - "supports_parallel_tool_calls": true, - "supports_reasoning": true, - "input_modalities": ["text"] - }, - { - "id": "MiniMax-M2", - "name": "MiniMax M2", - "description": "Agentic capabilities with advanced reasoning, function calling, and real-time streaming", + "id": "MiniMax-M2.7-highspeed", + "name": "MiniMax M2.7 Highspeed", + "description": "Same performance as M2.7 with significantly faster inference (~100 tps)", "context_length": 204800, "tools_supported": true, "supports_parallel_tool_calls": true,