pub enum DeepgramTranscriberModel {
Show 39 variants
Nova3,
Nova3General,
Nova3Medical,
Nova2,
Nova2General,
Nova2Meeting,
Nova2Phonecall,
Nova2Finance,
Nova2Conversationalai,
Nova2Voicemail,
Nova2Video,
Nova2Medical,
Nova2Drivethru,
Nova2Automotive,
Nova2Atc,
Nova,
NovaGeneral,
NovaPhonecall,
NovaMedical,
Enhanced,
EnhancedGeneral,
EnhancedMeeting,
EnhancedPhonecall,
EnhancedFinance,
Base,
BaseGeneral,
BaseMeeting,
BasePhonecall,
BaseFinance,
BaseConversationalai,
BaseVoicemail,
BaseVideo,
Whisper,
WhisperTiny,
WhisperBase,
WhisperSmall,
WhisperMedium,
WhisperLarge,
Custom(String),
}
Expand description
DeepgramTranscriberModel : This is the Deepgram model that will be used. A list of models can be found here: https://developers.deepgram.com/docs/models-languages-overview This is the Deepgram model that will be used. A list of models can be found here: https://developers.deepgram.com/docs/models-languages-overview
Variants§
Nova3
Nova3General
Nova3Medical
Nova2
Nova2General
Nova2Meeting
Nova2Phonecall
Nova2Finance
Nova2Conversationalai
Nova2Voicemail
Nova2Video
Nova2Medical
Nova2Drivethru
Nova2Automotive
Nova2Atc
Nova
NovaGeneral
NovaPhonecall
NovaMedical
Enhanced
EnhancedGeneral
EnhancedMeeting
EnhancedPhonecall
EnhancedFinance
Base
BaseGeneral
BaseMeeting
BasePhonecall
BaseFinance
BaseConversationalai
BaseVoicemail
BaseVideo
Whisper
WhisperTiny
WhisperBase
WhisperSmall
WhisperMedium
WhisperLarge
Custom(String)
Implementations§
Trait Implementations§
Source§impl Clone for DeepgramTranscriberModel
impl Clone for DeepgramTranscriberModel
Source§fn clone(&self) -> DeepgramTranscriberModel
fn clone(&self) -> DeepgramTranscriberModel
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeepgramTranscriberModel
impl Debug for DeepgramTranscriberModel
Source§impl Default for DeepgramTranscriberModel
impl Default for DeepgramTranscriberModel
Source§impl<'de> Deserialize<'de> for DeepgramTranscriberModel
impl<'de> Deserialize<'de> for DeepgramTranscriberModel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for DeepgramTranscriberModel
impl Display for DeepgramTranscriberModel
Source§impl PartialEq for DeepgramTranscriberModel
impl PartialEq for DeepgramTranscriberModel
Source§impl Serialize for DeepgramTranscriberModel
impl Serialize for DeepgramTranscriberModel
impl StructuralPartialEq for DeepgramTranscriberModel
Auto Trait Implementations§
impl Freeze for DeepgramTranscriberModel
impl RefUnwindSafe for DeepgramTranscriberModel
impl Send for DeepgramTranscriberModel
impl Sync for DeepgramTranscriberModel
impl Unpin for DeepgramTranscriberModel
impl UnwindSafe for DeepgramTranscriberModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.