LoslegenKostenlos loslegen

Preparing the spoken response

You've made it to the final step of the case study! Your task now is to convert the tailored, translated response into speech. Since the customer submitted their query via audio, they'll receive an audio reply in return—how cool is that?

The translated reply from the previous exercise is available as translated_reply.

Diese Übung ist Teil des Kurses

Multi-Modal Systems with the OpenAI API

Kurs anzeigen

Anleitung zur Übung

  • Use the gpt-4o-mini-tts model with the "onyx" voice to create a speech request for translated_reply.
  • Stream the response to an .mp3 file.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

client = OpenAI(api_key="")

# Create the text-to-speech request
response = ____

# Stream the response to an MP3 file
response.____("output.mp3")
Code bearbeiten und ausführen