pub enum SmartEndpointingEnabled {
True,
False,
Livekit,
}Expand description
This determines if a customer speech is considered done (endpointing) using a Vapi custom-trained model on customer’s speech. This is good for middle-of-thought detection. Alternatively, you can use LiveKit’s smart endpointing model (it only supports English, though) Once an endpoint is triggered, the request is sent to assistant.model. Usage: - If your conversations are long-form and you want assistant to wait smartly even if customer pauses for a bit to think, you can use this instead. This overrides transcriptionEndpointingPlan. @default false
Variants§
Trait Implementations§
Source§impl Clone for SmartEndpointingEnabled
impl Clone for SmartEndpointingEnabled
Source§fn clone(&self) -> SmartEndpointingEnabled
fn clone(&self) -> SmartEndpointingEnabled
Returns a copy 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 Debug for SmartEndpointingEnabled
impl Debug for SmartEndpointingEnabled
Source§impl Default for SmartEndpointingEnabled
impl Default for SmartEndpointingEnabled
Source§fn default() -> SmartEndpointingEnabled
fn default() -> SmartEndpointingEnabled
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SmartEndpointingEnabled
impl<'de> Deserialize<'de> for SmartEndpointingEnabled
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 Hash for SmartEndpointingEnabled
impl Hash for SmartEndpointingEnabled
Source§impl Ord for SmartEndpointingEnabled
impl Ord for SmartEndpointingEnabled
Source§fn cmp(&self, other: &SmartEndpointingEnabled) -> Ordering
fn cmp(&self, other: &SmartEndpointingEnabled) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SmartEndpointingEnabled
impl PartialEq for SmartEndpointingEnabled
Source§impl PartialOrd for SmartEndpointingEnabled
impl PartialOrd for SmartEndpointingEnabled
Source§impl Serialize for SmartEndpointingEnabled
impl Serialize for SmartEndpointingEnabled
impl Copy for SmartEndpointingEnabled
impl Eq for SmartEndpointingEnabled
impl StructuralPartialEq for SmartEndpointingEnabled
Auto Trait Implementations§
impl Freeze for SmartEndpointingEnabled
impl RefUnwindSafe for SmartEndpointingEnabled
impl Send for SmartEndpointingEnabled
impl Sync for SmartEndpointingEnabled
impl Unpin for SmartEndpointingEnabled
impl UnwindSafe for SmartEndpointingEnabled
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.