voxtral-tts
Installation
SKILL.md
تحويل النص إلى صوت عربي
Voxtral TTS (Mistral — مارس 2026)
عبر API
curl -s -X POST "https://api.mistral.ai/v1/audio/speech" \
-H "Authorization: Bearer $MISTRAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "voxtral-mini-2025-12",
"input": "النص العربي هنا",
"voice": "aria",
"language": "ar",
"response_format": "mp3"
}' \
--output output.mp3