Характеристики
- Контекстное окно
- 1,000,000
- Входящие данные
- Текст, Изображения, Видео
- Исходящие данные
- Текст
Цены
Оплата по факту за использованные токены, цены за 1M токенов в рублях.
| Входящие токены | 197.50 ₽ |
| Исходящие токены | 592.50 ₽ |
| Чтение кеша | 24.69 ₽ |
| Запись кеша | 246.88 ₽ |
Описание модели
Qwen3.8 Max is the flagship model in Alibaba's Qwen3.8 series, the general-availability successor to the Qwen3.8 Max Preview. It is a multimodal reasoning model intended for complex reasoning, visual understanding,...
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":"qwen/qwen3.8-max","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="qwen/qwen3.8-max",
messages=[{"role": "user", "content": "Привет!"}],
)
print(resp.choices[0].message.content)