Pricing, context window, capabilities, and release date — pulled from each provider's public docs. Both are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.
Both models stream in parallel through your own AIgateway key. Tokens, latency, and cost update as they arrive.
| Mistral Small 4 mistral/mistral-small-4-0-26-03 | Voxtral TTS mistral/voxtral-tts-26-03 | |
|---|---|---|
| Provider | Mistral | Mistral |
| Family | Mistral | Mistral |
| Modality | text | audio-tts |
| Context window | 131,072 tok | — |
| Max output | 16,384 tok | — |
| Released | 2026-03-01 | 2026-03-26 |
| Input price | $0.200 /1M | $12.00 /1K ch |
| Output price | $0.600 /1M | — |
| Cache read | — | — |
| Tools | yes | — |
| Streaming | yes | — |
| Vision | yes | — |
| JSON mode | yes | — |
| Reasoning | — | — |
| Prompt caching | — | — |
Mistral Small 4 (Mar 2026) — compact frontier-class text model.
Voxtral TTS (Mar 2026) — Mistral multilingual speech synthesis.
# pip install aigateway-py openai
# aigateway-py: sub-accounts, evals, replays, jobs, webhook verify.
# openai SDK: chat/embeddings/images/audio — drop-in compat per our SDK's own guidance.
from openai import OpenAI
client = OpenAI(
base_url="https://api.aigateway.sh/v1",
api_key="sk-aig-...",
)
# Try Mistral Small 4
client.chat.completions.create(
model="mistral/mistral-small-4-0-26-03",
messages=[{"role":"user","content":"hello"}],
)
# Try Voxtral TTS — same client, same key
client.chat.completions.create(
model="mistral/voxtral-tts-26-03",
messages=[{"role":"user","content":"hello"}],
)