feat: upgrade MiniMax default model to M3

- Add MiniMax-M3 to the model selection list (set as the new default)
- Add MiniMax-M2.7 and MiniMax-M2.7-highspeed as alternatives
- Remove deprecated MiniMax-M2.5 / M2.5-highspeed entries
- Update example config and Chinese setup docs to reference M3 (512K context)
This commit is contained in:
octo-patch 2026-06-02 01:48:11 +08:00
parent c44263e3d8
commit 722b5fefcd
4 changed files with 27 additions and 20 deletions

View file

@ -1528,14 +1528,20 @@ export const LLM_MODELS: LLMModel[] = [
// MiniMax
{
value: "MiniMax-M2.5",
label: "MiniMax M2.5",
value: "MiniMax-M3",
label: "MiniMax M3",
provider: "MINIMAX",
contextWindow: "512K",
},
{
value: "MiniMax-M2.7",
label: "MiniMax M2.7",
provider: "MINIMAX",
contextWindow: "204K",
},
{
value: "MiniMax-M2.5-highspeed",
label: "MiniMax M2.5 Highspeed",
value: "MiniMax-M2.7-highspeed",
label: "MiniMax M2.7 Highspeed",
provider: "MINIMAX",
contextWindow: "204K",
},

View file

@ -184,8 +184,8 @@ export const LLM_PROVIDERS: LLMProvider[] = [
{
value: "MINIMAX",
label: "MiniMax",
example: "MiniMax-M2.5, MiniMax-M2.5-highspeed",
description: "High-performance models with 204K context",
example: "MiniMax-M3, MiniMax-M2.7",
description: "High-performance models with up to 512K context",
apiBase: "https://api.minimax.io/v1",
},
{