flat-mechanic-85812
07/10/2025, 4:31 PMtall-airline-16756
07/10/2025, 4:32 PMtall-airline-16756
07/10/2025, 4:32 PMstt = 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....