feat: add MiniMax-M2.5-highspeed model (#13470)

## Summary

Add the `MiniMax-M2.5-highspeed` model to both `minimax` (CN) and
`minimax-global` provider model lists.

## Changes

- Add `MiniMax-M2.5-highspeed` model entry to the `minimax` provider
model list
- Add `MiniMax-M2.5-highspeed` model entry to the `minimax-global`
provider model list

## Context

`MiniMax-M2.5-highspeed` is an officially available MiniMax model that
offers the same performance as `MiniMax-M2.5` but with faster inference
speed and more agility. It supports 204,800 tokens context window.

- API Documentation:
https://platform.minimax.io/docs/api-reference/text-openai-api

Signed-off-by: octo-patch <octo-patch@users.noreply.github.com>
Co-authored-by: octo-patch <octo-patch@users.noreply.github.com>
This commit is contained in:
Octopus
2026-03-14 09:56:25 -05:00
committed by GitHub
parent 774cb7a73c
commit 46ad0fa5d8

View File

@@ -1054,6 +1054,12 @@ export const SYSTEM_MODELS: Record<SystemProviderId | 'defaultModel', Model[]> =
name: 'MiniMax-M2.5',
group: 'M2.5'
},
{
id: 'MiniMax-M2.5-highspeed',
provider: 'minimax',
name: 'MiniMax-M2.5-highspeed',
group: 'M2.5'
},
{
id: 'MiniMax-M2.5-lightning',
provider: 'minimax',
@@ -1092,6 +1098,12 @@ export const SYSTEM_MODELS: Record<SystemProviderId | 'defaultModel', Model[]> =
name: 'MiniMax-M2.5',
group: 'M2.5'
},
{
id: 'MiniMax-M2.5-highspeed',
provider: 'minimax-global',
name: 'MiniMax-M2.5-highspeed',
group: 'M2.5'
},
{
id: 'MiniMax-M2.5-lightning',
provider: 'minimax-global',