Merge pull request #1456 from octo-patch/feature/upgrade-minimax-m3

feat: upgrade MiniMax default model to M3
This commit is contained in:
Rohan Verma 2026-06-01 12:45:24 -07:00 committed by GitHub
commit 8340cda6e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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",
},
{