Назад к моделям

GLM-5.3-Flash

zaizai/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

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
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
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
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.ai2026-09-18проверено
Максимальный выводtherouter.ai2026-09-18проверено
Модальностиdocs.z.ai2026-09-18проверено
Image inputdocs.z.ai2026-09-18проверено
Рассуждениеdocs.z.ai2026-09-18проверено
Цена в TheRoutertherouter.ai2026-09-18проверено
Стоимость vs flagship GLM-5.3therouter.ai2026-09-18проверено
API-возможностиdocs.z.ai2026-09-18проверено
Поколениеdocs.z.ai2026-09-18проверено
Дата отсечения данныхнеизвестно
DeepSWE v1.1 (GLM-5.3 flagship, generation reference)docs.z.ai2026-09-18проверено
Z.ai Code Bench Max (GLM-5.3 flagship, generation reference)docs.z.ai2026-09-18проверено
CyberGym vulnerability discovery (GLM-5.3 flagship, generation reference)docs.z.ai2026-09-18проверено
GLM-5.3: Zhipu's Open-Source Flagship with 1M Context — API Integration and Routing GuideTheRouter Blog2026-09-18проверено
Чем GLM-5.3-Flash отличается от GLM-5.3?docs.z.ai2026-09-18к проверке
Можно ли отключить reasoning в GLM-5.3-Flash?docs.z.ai2026-09-18к проверке
Подходит ли GLM-5.3-Flash для production vision pipelines?therouter.ai2026-09-18к проверке
Как GLM-5.3-Flash сравнивается с Google Gemini Flash для мультимодальных задач?therouter.ai2026-09-18к проверке
Поддержка