All models

Mistral: Voxtral Mini TTS

mistralai/voxtral-mini-tts-2603
speech

Compact TTS from Mistral: 30 voices, fast and economical.

Pricing

1K chars

Parameters

inputrequired

How to use via API

from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
resp = client.audio.speech.create(
model="mistralai/voxtral-mini-tts-2603",
voice="alloy", # ...
input="Привет! Это Mixen AI.",
)
resp.stream_to_file("speech.mp3")
Try in the botAPI docs