docs: upgrade MiniMax model references from M2.5 to M2.7

Update all documentation to reference the latest MiniMax-M2.7 and
MiniMax-M2.7-highspeed models, replacing the previous M2.5 series.
Also updates the CLI backend section with the current API endpoint
(api.minimax.io) and platform URL.

Co-Authored-By: Octopus <liyuan851277048@icloud.com>
This commit is contained in:
Octopus
2026-03-18 07:57:16 -05:00
committed by PR Bot
parent fc096759fb
commit 7ce6f4fd40
5 changed files with 17 additions and 17 deletions
@@ -49,7 +49,7 @@
> - OpenAI 系列:GPT-4、GPT-4.1、GPT-4o、GPT-5.1 等
> - Google 系列:Gemini 1.5 Pro、Gemini 1.5 Flash 等
> - Anthropic 系列:Claude 3.5 Sonnet、Claude 3.5 Haiku 等
> - 国内模型:通义千问 Qwen 系列、文心一言 ERNIE Bot 系列、GLM/智谱清言、腾讯混元、讯飞星火、月之暗面的 Kimi 背后的大模型、MiniMax MiniMax-M2.5 系列等
> - 国内模型:通义千问 Qwen 系列、文心一言 ERNIE Bot 系列、GLM/智谱清言、腾讯混元、讯飞星火、月之暗面的 Kimi 背后的大模型、MiniMax MiniMax-M2.7 系列等
>
> 更偏视觉和视频方向的大模型和服务,包括:
>
@@ -631,7 +631,7 @@ AI 会根据你的描述,直接修改 React 组件和样式。保存后刷新
|------|-----------------|
| Doubao-Seed 系列 | ✅ 支持 |
| GLM-4.7 / 4.6 | ❌ 不支持 |
| MiniMax-M2.1 / M2 | ❌ 不支持 |
| MiniMax-M2.7 / M2.5 | ❌ 不支持 |
| DeepSeek-V3.1 | ❌ 不支持 |
| Kimi-K2.5 | ✅ 支持 |
| Kimi-K2-0905 | ❌ 不支持 |
@@ -173,16 +173,16 @@ curl \
::: details 了解更多:MiniMax 是什么?
**MiniMax** 是一家中国人工智能公司,致力于通用人工智能技术的研发。MiniMax 推出了自研的 MiniMax-M2.5 大语言模型系列,在多项基准测试中表现优异,具有极高的性价比。
**MiniMax** 是一家中国人工智能公司,致力于通用人工智能技术的研发。MiniMax 推出了自研的 MiniMax-M2.7 大语言模型系列,在多项基准测试中表现优异,具有极高的性价比。
**MiniMax-M2.5 系列的主要特点:**
**MiniMax-M2.7 系列的主要特点:**
- **超长上下文**:支持 204,800 tokens 的上下文窗口,适合处理长文档、多轮对话
- **高性价比**输入 $0.3/M tokens,输出 $1.2/M tokens价格极具竞争力
- **高性价比**:价格极具竞争力
- **OpenAI 兼容接口**:可以直接使用 OpenAI SDK 调用,无需额外学习新的 API 格式
- **两个可用模型**
- `MiniMax-M2.5`:旗舰模型,适合复杂任务
- `MiniMax-M2.5-highspeed`:高速版本,保持同样的性能但更快
- `MiniMax-M2.7`:旗舰模型,适合复杂任务
- `MiniMax-M2.7-highspeed`:高速版本,保持同样的性能但更快
:::
接入方式与 DeepSeek 一致,只需要三步:
@@ -198,7 +198,7 @@ curl https://api.minimax.io/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${MINIMAX_API_KEY}" \
-d '{
"model": "MiniMax-M2.5",
"model": "MiniMax-M2.7",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"}
@@ -211,7 +211,7 @@ curl https://api.minimax.io/v1/chat/completions \
MiniMax 的 API 格式与 DeepSeek 几乎完全一致(都是 OpenAI 兼容格式),所以如果你已经成功接入了 DeepSeek,切换到 MiniMax 只需要修改三个地方:
1. **基础 URL**:改为 `https://api.minimax.io/v1`
2. **API Key**:使用 MiniMax 的 API Key
3. **模型名称**:改为 `MiniMax-M2.5``MiniMax-M2.5-highspeed`
3. **模型名称**:改为 `MiniMax-M2.7``MiniMax-M2.7-highspeed`
更多信息请参考 [MiniMax OpenAI 兼容接口文档](https://platform.minimax.io/docs/api-reference/text-openai-api)。
:::