Mulai sekarangMulai gratis

Translating the transcript into English

With the customer call transcript created, it's time to translate it into English for processing.

The transcript you created previously is available as transcript, and the country code is stored in country_code.

Latihan ini merupakan bagian dari kursus

Multi-Modal Systems with the OpenAI API

Lihat Kursus

Instruksi latihan

  • Translate the text in transcript into English.
  • Extract the transcript text from response.

Latihan interaktif langsung praktik

Cobalah latihan ini dengan melengkapi kode contoh ini.

client = OpenAI(api_key="")

# Translate the transcript into English
response = ____

# Extract the translated transcript text
en_transcript = ____
print(en_transcript)
Edit dan Jalankan Kode