const translation = await client.audio.translations.create({
file: audioFile,
model: "openai/whisper-large-v3",
response_format: "verbose_json",
});
console.log({
text: translation.text,
language: translation.language,
duration: translation.duration,
});