feat: add MiniMax-M3 to provider model list

- Add MiniMax-M3 to the MiniMax provider description across i18n locales
- Remove deprecated MiniMax-M2.5 reference
- Retain MiniMax-M2.7 and MiniMax-M2.7-highspeed as supported models

MiniMax-M3 is the latest flagship model from MiniMax with extended context
and stronger reasoning capabilities. Users can now see it in the provider
selection UI when configuring a new Minimax model.
This commit is contained in:
octo-patch
2026-06-02 01:42:53 +08:00
committed by lyingbug
parent 8f8a276120
commit f22995f835
5 changed files with 5 additions and 5 deletions

View File

@@ -3116,7 +3116,7 @@ export default {
},
minimax: {
label: 'MiniMax',
description: 'MiniMax-M2.7, MiniMax-M2.7-highspeed, MiniMax-M2.5, etc.',
description: 'MiniMax-M3, MiniMax-M2.7, MiniMax-M2.7-highspeed, etc.',
},
mimo: {
label: 'MiMo',

View File

@@ -2352,7 +2352,7 @@ export default {
},
minimax: {
label: "MiniMax",
description: "MiniMax-M2.7, MiniMax-M2.7-highspeed, MiniMax-M2.5 등",
description: "MiniMax-M3, MiniMax-M2.7, MiniMax-M2.7-highspeed 등",
},
mimo: {
label: "MiMo",

View File

@@ -2068,7 +2068,7 @@ export default {
},
minimax: {
label: 'MiniMax',
description: 'MiniMax-M2.7, MiniMax-M2.7-highspeed, MiniMax-M2.5, etc.'
description: 'MiniMax-M3, MiniMax-M2.7, MiniMax-M2.7-highspeed, etc.'
},
mimo: {
label: 'MiMo',

View File

@@ -2333,7 +2333,7 @@ export default {
},
minimax: {
label: "MiniMax",
description: "MiniMax-M2.7, MiniMax-M2.7-highspeed, MiniMax-M2.5 等",
description: "MiniMax-M3, MiniMax-M2.7, MiniMax-M2.7-highspeed 等",
},
mimo: {
label: "小米 MiMo",

View File

@@ -25,7 +25,7 @@ func (p *MiniMaxProvider) Info() ProviderInfo {
return ProviderInfo{
Name: ProviderMiniMax,
DisplayName: "MiniMax",
Description: "MiniMax-M2.7, MiniMax-M2.7-highspeed, MiniMax-M2.5, etc.",
Description: "MiniMax-M3, MiniMax-M2.7, MiniMax-M2.7-highspeed, etc.",
DefaultURLs: map[types.ModelType]string{
types.ModelTypeKnowledgeQA: MiniMaxCNBaseURL,
},