ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Multi-Modal Systems with the OpenAI API

Ver curso

Instrucciones del ejercicio

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

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

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")
Editar y ejecutar código