Get startedGet started for free

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.

This exercise is part of the course

Multi-Modal Systems with the OpenAI API

View Course

Exercise instructions

  • Send the Czech text provided to the gpt-4o-mini-tts model using the "coral" voice.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

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")
Edit and Run Code