From 0dfb64a07fe612a6fc1c4cb9992845afea252bae Mon Sep 17 00:00:00 2001 From: tgolob <34978067+tgolob@users.noreply.github.com> Date: Sat, 22 Aug 2026 08:26:19 -0400 Subject: [PATCH] docs: clarify nova-3 transcription language defaults Closes #752 --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fb08dbef..389470b1 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,10 @@ with client.listen.v2.connect( Transcribe pre-recorded audio files ([API Reference](./reference.md#listen-v1-media-transcribe-file)): +`nova-3` assumes English when `language` is omitted. For non-English audio, pass the +expected language explicitly (for example, `language="fr"`) or use `language="multi"` +for automatic multilingual detection. + ```python from deepgram import DeepgramClient @@ -75,7 +79,8 @@ client = DeepgramClient() with open("audio.wav", "rb") as audio_file: response = client.listen.v1.media.transcribe_file( request=audio_file.read(), - model="nova-3" + model="nova-3", + language="en", ) print(response.results.channels[0].alternatives[0].transcript) ```