#DiarizeVersion Feature
1 messages · Page 1 of 1 (latest)
Hi @warm panther. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
The DiarizeVersion option is a feature available in Deepgram's live transcription API. It allows you to specify the version of the diarization feature to use when processing audio streams. Here's what we know about it based on the provided information:
-
The DiarizeVersion option is part of the LiveTranscriptionOptions struct in the Deepgram Go SDK SDK Documentation (https://pkg.go.dev/github.com/deepgram/deepgram-go-sdk/pkg/client/interfaces/v1#LiveTranscriptionOptions).
-
It is defined as a string type parameter:
DiarizeVersion string `json:"diarize_version,omitempty" schema:"diarize_version,omitempty"` -
This option is only used when the diarization feature is enabled, which means you need to set
diarize=truein your API request Deepgram Docs (https://developers.deepgram.com/reference/listen-remote). -
The DiarizeVersion parameter allows you to choose a specific version of the diarization feature Deepgram Docs (https://developers.deepgram.com/docs/diarization#enable-feature).
Unfortunately, the provided knowledge sources do not specify the exact possible options for DiarizeVersion. To get the most up-to-date information on available versions, you may need to consult the latest Deepgram documentation or contact their support team.
It's worth noting that the DiarizeVersion feature is available in multiple Deepgram SDKs, including JavaScript, .NET, Python, Go, and Rust SDK Feature Matrix (https://developers.deepgram.com/docs/sdk-feature-matrix#transcription-api--streaming).