pub enum RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness {
Low,
Medium,
High,
Auto,
}
Expand description
Used only for semantic_vad
mode. The eagerness of the model to respond. low
will wait longer for the user to continue speaking, high
will respond more quickly. auto
is the default and is equivalent to medium
.
Variants§
Trait Implementations§
Source§impl Clone for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl Clone for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
Source§fn clone(
&self,
) -> RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
fn clone( &self, ) -> RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl Default for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
Source§fn default() -> RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
fn default() -> RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl<'de> Deserialize<'de> for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
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 PartialEq for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl PartialEq for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
Source§fn eq(
&self,
other: &RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness,
) -> bool
fn eq( &self, other: &RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl StructuralPartialEq for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
Auto Trait Implementations§
impl Freeze for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl RefUnwindSafe for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl Send for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl Sync for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl Unpin for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
impl UnwindSafe for RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness
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