> ## 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 預算。           |

完整請求格式見[介面說明](/zh-hant/api-reference/endpoint/chat-openai)。
