GLM-5.3-Flash
Чем обслуживание в TheRouter отличается от вендорского
Z.AI документирует GLM-5.3-Flash в разделе VLM с текстовыми параметрами, совпадающими с GLM-5.3, и дополнительной поддержкой image_url input. Контекст 1M токенов, reasoning всегда включён (effort: low/high/max). Отдельная страница цен для Flash не была найдена.
TheRouter отдаёт zai/glm-5.3-flash через поверхность OpenAI Chat Completion с контекстом 1M, 131 072 max completion tokens, text+image input, text output, tools, tool_choice, response_format и reasoning_effort. Цены: $0.162/M input и $0.54/M output.
Гид по API
Vision + text chat
GLM-5.3-Flash принимает image_url content blocks вместе с текстом. Передавайте изображение как URL или base64 data URI в массиве content пользовательского сообщения.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "zai/glm-5.3-flash",
"reasoning_effort": "low",
"messages": [
{
"role": "user",
"content": [
{"type": "image_url", "image_url": {"url": "https://example.com/diagram.png"}},
{"type": "text", "text": "Describe the architecture shown in this diagram."}
]
}
],
"max_tokens": 800
}'Text-only chat completion
Для text-only задач GLM-5.3-Flash ведёт себя как экономичная версия GLM-5.3. Используйте reasoning_effort: "max" для сложных задач, "low" для снижения TTFT на быстрых запросах.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "zai/glm-5.3-flash",
"reasoning_effort": "high",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Summarise the key risks in this migration plan."}
],
"max_tokens": 600
}'Вызов инструментов
Tool calling для GLM-5.3-Flash следует той же схеме, что и для GLM-5.3. Reasoning выполняется до выбора инструмента; при уровне low это достаточно быстро для высокочастотных agentic loops при сохранении ~9x экономии затрат.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "zai/glm-5.3-flash",
"reasoning_effort": "low",
"messages": [{"role": "user", "content": "Get the latest CI status for the main branch."}],
"tools": [{
"type": "function",
"function": {
"name": "get_ci_status",
"description": "Fetch CI pipeline status for a git branch",
"parameters": {
"type": "object",
"properties": {"branch": {"type": "string"}},
"required": ["branch"]
}
}
}],
"tool_choice": "auto"
}'Реестр фактов — каждая утверждаемая величина имеет источник
| источник | URL | получено | |
|---|---|---|---|
| Контекстное окно | docs.z.ai ↗ | 2026-09-18 | проверено |
| Максимальный вывод | therouter.ai ↗ | 2026-09-18 | проверено |
| Модальности | docs.z.ai ↗ | 2026-09-18 | проверено |
| Image input | docs.z.ai ↗ | 2026-09-18 | проверено |
| Рассуждение | docs.z.ai ↗ | 2026-09-18 | проверено |
| Цена в TheRouter | therouter.ai ↗ | 2026-09-18 | проверено |
| Стоимость vs flagship GLM-5.3 | therouter.ai ↗ | 2026-09-18 | проверено |
| API-возможности | docs.z.ai ↗ | 2026-09-18 | проверено |
| Поколение | docs.z.ai ↗ | 2026-09-18 | проверено |
| Дата отсечения данных | — | — | неизвестно |
| DeepSWE v1.1 (GLM-5.3 flagship, generation reference) | docs.z.ai ↗ | 2026-09-18 | проверено |
| Z.ai Code Bench Max (GLM-5.3 flagship, generation reference) | docs.z.ai ↗ | 2026-09-18 | проверено |
| CyberGym vulnerability discovery (GLM-5.3 flagship, generation reference) | docs.z.ai ↗ | 2026-09-18 | проверено |
| GLM-5.3: Zhipu's Open-Source Flagship with 1M Context — API Integration and Routing Guide | TheRouter Blog ↗ | 2026-09-18 | проверено |
| Чем GLM-5.3-Flash отличается от GLM-5.3? | docs.z.ai ↗ | 2026-09-18 | к проверке |
| Можно ли отключить reasoning в GLM-5.3-Flash? | docs.z.ai ↗ | 2026-09-18 | к проверке |
| Подходит ли GLM-5.3-Flash для production vision pipelines? | therouter.ai ↗ | 2026-09-18 | к проверке |
| Как GLM-5.3-Flash сравнивается с Google Gemini Flash для мультимодальных задач? | therouter.ai ↗ | 2026-09-18 | к проверке |