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

# GLM-5.3 FlashX

> GLM-5.3 Flash 的高速推理服务版本，适合多模态编程和长程代理。

GLM-5.3 Flash 的高速推理服务版本，适合多模态编程和长程代理。

## 模型信息

| 字段           | 说明                        |
| ------------ | ------------------------- |
| `model`      | glm-5.3-flashx            |
| `context`    | 1M tokens                 |
| `max output` | 128K tokens               |
| `endpoint`   | POST /v1/chat/completions |

上下文和输出长度为模型规格；实际请求限制、可用性与计费取决于 MixRoute 路由。

## 能力与使用

* 模型具备原生文本、图像、视频和文件理解能力，输出文本；不同输入的传输方式取决于接口路由。
* 不能关闭思考，thinking.type 仅支持 enabled。Chat Completions 中的图片使用 messages\[].content\[] 内的 image\_url 内容块和 image\_url.url。
* FlashX 与 glm-5.3-flash 使用不同模型 ID；实际吞吐量取决于服务路由和工作负载。

## 请求示例

调用前设置 `MIXROUTE_API_KEY`。

```bash theme={null}
curl --request POST "https://api.mixroute.ai/v1/chat/completions" \
  --header "Authorization: Bearer $MIXROUTE_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "model": "glm-5.3-flashx",
  "messages": [
    {
      "role": "user",
      "content": "Explain the tradeoffs of database indexes."
    }
  ],
  "max_tokens": 1024
}'
```

## 请求字段

| 字段           | 说明                        |
| ------------ | ------------------------- |
| `model`      | 必填，使用上方完整模型 ID。           |
| `messages`   | 必填，会话消息包含 role 和 content。 |
| `max_tokens` | 可选，输出 token 预算。           |

完整请求格式见[接口说明](/cn/api-reference/endpoint/chat-openai)。
