Характеристики
- Контекстное окно
- 32,000
- Входящие данные
- Текст, Аудио, Файлы
- Исходящие данные
- Текст
Цены
Оплата по факту за использованные токены, цены за 1M токенов в рублях.
| Входящие токены | 9.88 ₽ |
| Исходящие токены | 29.63 ₽ |
| Чтение кеша | 0.99 ₽ |
Описание модели
Voxtral Small is an enhancement of Mistral Small 3, incorporating state-of-the-art audio input capabilities while retaining best-in-class text performance. It excels at speech transcription, translation and audio understanding. Input audio...
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":"mistralai/voxtral-small-24b-2507","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="mistralai/voxtral-small-24b-2507",
messages=[{"role": "user", "content": "Привет!"}],
)
print(resp.choices[0].message.content)