TTS in other languages!
Let's have a go at some non-English text. Try sending the following text input to the model:
Dnes je krásný slunečný den.
The text is in the Czech language, which is spoken primarily in the Czech Republic.
Diese Übung ist Teil des Kurses
Multi-Modal Systems with the OpenAI API
Anleitung zur Übung
- Send the Czech text provided to the
gpt-4o-mini-ttsmodel using the"coral"voice.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
client = OpenAI(api_key="")
# Pass the non-English text to the model
response = client.audio.speech.create(
model="gpt-4o-mini-tts",
voice="____",
____="Dnes je krásný slunečný den."
)
response.stream_to_file("output.mp3")