Voxtral Mini
Mistral
mistral/voxtral-mini
Speech-to-text model
Context Window
32K
32,000 tokens
Max Output
4K
4,096 tokens
About this model
Voxtral Mini 3B β lightweight speech understanding via Bedrock
Access it through Chuizi.AI with a single ck- API key β no separate Mistral AI account needed.
Highlights
Multi-cloud failover
Unified billing via Chuizi.AI
Best For
Meeting transcriptionVoice note appsPodcast indexingVoice commands
2025-07-15
Capabilities
ChatAudioSTT
Aliases
voxtral-miniPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.19 |
| Output / 1M | $0.58 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) with open("audio.mp3", "rb") as f: transcript = client.audio.transcriptions.create( model="mistral/voxtral-mini", file=f, ) print(transcript.text)