How do I choose german language here? stt=deepgram...
# ask-ai
f
How do I choose german language here? stt=deepgram.STT(model="nova-3", language="german")
t
Thanks for reaching out, Mike. I'm an AI assistant and I'm here to help. Give me a moment while I research this topic.
To configure Deepgram STT for German, use the ISO language code "de" instead of "german". Your configuration should look like:
Copy code
stt = deepgram.STT(model="nova-3", language="de")
The
"nova-3"
model supports German, and "de" is the correct language code for German. Configurations using
language="german"
will not work—you must use the standard code
"de"
instead. You can also switch the language at runtime with
stt.update_options(language="de")
if needed. For other supported languages or more configuration options, refer to the list of allowed language codes in the documentation. Sources: livekit-plugins/livekit-plugins-neuphonic/livekit/plugins/neuphonic/models....