feat: update default MiniMax model to M2.7 (#1428)

This commit is contained in:
Hansen1018
2026-03-24 08:37:00 +08:00
committed by GitHub
parent 966995fb88
commit 9b14c5c84d
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -201,7 +201,7 @@ func (s *Server) handleGetSupportedModels(c *gin.Context) {
{"id": "gemini", "name": "Google Gemini", "provider": "gemini", "defaultModel": "gemini-3-pro-preview"},
{"id": "grok", "name": "Grok (xAI)", "provider": "grok", "defaultModel": "grok-3-latest"},
{"id": "kimi", "name": "Kimi (Moonshot)", "provider": "kimi", "defaultModel": "moonshot-v1-auto"},
{"id": "minimax", "name": "MiniMax", "provider": "minimax", "defaultModel": "MiniMax-M2.5"},
{"id": "minimax", "name": "MiniMax", "provider": "minimax", "defaultModel": "MiniMax-M2.7"},
{"id": "claw402", "name": "Claw402 (Base USDC)", "provider": "claw402", "defaultModel": "deepseek"},
}
+1 -1
View File
@@ -8,7 +8,7 @@ import (
const (
DefaultMiniMaxBaseURL = "https://api.minimax.io/v1"
DefaultMiniMaxModel = "MiniMax-M2.5"
DefaultMiniMaxModel = "MiniMax-M2.7"
)
func init() {
+1 -1
View File
@@ -25,5 +25,5 @@ const (
// Default MiniMax configuration (used by WithMiniMaxConfig convenience option)
DefaultMiniMaxBaseURL = "https://api.minimax.io/v1"
DefaultMiniMaxModel = "MiniMax-M2.5"
DefaultMiniMaxModel = "MiniMax-M2.7"
)
+1 -1
View File
@@ -91,7 +91,7 @@ export const AI_PROVIDER_CONFIG: Record<string, AIProviderConfig> = {
apiName: 'Moonshot',
},
minimax: {
defaultModel: 'MiniMax-M2.5',
defaultModel: 'MiniMax-M2.7',
apiUrl: 'https://platform.minimax.io',
apiName: 'MiniMax',
},