> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bytespike.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# minimax-m2-7

> MiniMax M2.7 —— 有竞争力的中文 LLM 通用 chat 模型。通过 OpenAI Chat Completions 协议调用。

`minimax-m2-7` 是 MiniMax 的生产旗舰 —— 中文任务能力面广，适合通用 chat 工作流。

## 定价

| 输入          | 缓存读取        | 输出          |
| ----------- | ----------- | ----------- |
| \$0.26 / 1M | \$0.06 / 1M | \$1.20 / 1M |

缓存写入按输入费率计费。实时价格见 [pricing table](https://bytespike.ai/pricing#text)。

## Protocols

| Protocol                | 路径                                                  |
| ----------------------- | --------------------------------------------------- |
| OpenAI Chat Completions | `POST https://llm.bytespike.ai/v1/chat/completions` |

## Quickstart

```bash theme={null}
curl https://llm.bytespike.ai/v1/chat/completions \
  -H "Authorization: Bearer $BYTESPIKE_API_KEY" \
  -H "content-type: application/json" \
  -d '{
    "model": "minimax-m2-7",
    "messages": [{ "role": "user", "content": "Hello, ByteSpike." }]
  }'
```

## Capabilities

| 能力                       | 支持          |
| ------------------------ | ----------- |
| Chat Completions         | ✅           |
| Streaming (SSE)          | ✅           |
| Tools / function calling | —           |
| JSON mode                | ✅           |
| Vision (image input)     | —           |
| 上下文窗口                    | 128K tokens |

## 何时使用

* **中文通用 chat** —— 在 Doubao / GLM 之外多一种选择。

## 下一步

* [glm-5.1](/zh/models/glm-5) —— 另一个中文通用 chat 旗舰
* [doubao-seed-2.0-pro](/zh/models/doubao-seed-2-0-pro) —— 字节跳动旗舰
