Характеристики
- Контекстное окно
- 1,048,576
- Входящие данные
- Текст, Изображения, Видео
- Исходящие данные
- Текст
Цены
Оплата по факту за использованные токены, цены за 1M токенов в рублях.
| Входящие токены | 36.54 ₽ |
| Исходящие токены | 123.44 ₽ |
| Чтение кеша | 7.41 ₽ |
Описание модели
GLM-5.3-FlashX is the high-speed variant of Z.ai's GLM-5.3-Flash, a native multimodal model delivering inference speeds of up to 200 tokens/s. Built on the same hybrid sparse and linear attention architecture...
API и примеры кода
Единый OpenAI-совместимый endpoint. Укажите base_url и ключ из личного кабинета.
curl https://app.cloudcompute.ru/api/v1/chat/completions \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"z-ai/glm-5.3-flashx","messages":[{"role":"user","content":"Привет!"}]}'from openai import OpenAI
client = OpenAI(
base_url="https://app.cloudcompute.ru/api/v1",
api_key="YOUR_KEY",
)
resp = client.chat.completions.create(
model="z-ai/glm-5.3-flashx",
messages=[{"role": "user", "content": "Привет!"}],
)
print(resp.choices[0].message.content)