pub enum CreateAssistantDtoVoicemailDetection {
GoogleVoicemailDetectionPlan(GoogleVoicemailDetectionPlan),
OpenAiVoicemailDetectionPlan(OpenAiVoicemailDetectionPlan),
TwilioVoicemailDetectionPlan(TwilioVoicemailDetectionPlan),
VapiVoicemailDetectionPlan(VapiVoicemailDetectionPlan),
}
Expand description
CreateAssistantDtoVoicemailDetection : These are the settings to configure or disable voicemail detection. Alternatively, voicemail detection can be configured using the model.tools=[VoicemailTool]. This uses Twilio’s built-in detection while the VoicemailTool relies on the model to detect if a voicemail was reached. You can use neither of them, one of them, or both of them. By default, Twilio built-in detection is enabled while VoicemailTool is not. These are the settings to configure or disable voicemail detection. Alternatively, voicemail detection can be configured using the model.tools=[VoicemailTool]. This uses Twilio’s built-in detection while the VoicemailTool relies on the model to detect if a voicemail was reached. You can use neither of them, one of them, or both of them. By default, Twilio built-in detection is enabled while VoicemailTool is not.
Variants§
GoogleVoicemailDetectionPlan(GoogleVoicemailDetectionPlan)
OpenAiVoicemailDetectionPlan(OpenAiVoicemailDetectionPlan)
TwilioVoicemailDetectionPlan(TwilioVoicemailDetectionPlan)
VapiVoicemailDetectionPlan(VapiVoicemailDetectionPlan)
Trait Implementations§
Source§impl Clone for CreateAssistantDtoVoicemailDetection
impl Clone for CreateAssistantDtoVoicemailDetection
Source§fn clone(&self) -> CreateAssistantDtoVoicemailDetection
fn clone(&self) -> CreateAssistantDtoVoicemailDetection
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'de> Deserialize<'de> for CreateAssistantDtoVoicemailDetection
impl<'de> Deserialize<'de> for CreateAssistantDtoVoicemailDetection
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>,
Source§impl PartialEq for CreateAssistantDtoVoicemailDetection
impl PartialEq for CreateAssistantDtoVoicemailDetection
Source§fn eq(&self, other: &CreateAssistantDtoVoicemailDetection) -> bool
fn eq(&self, other: &CreateAssistantDtoVoicemailDetection) -> bool
self
and other
values to be equal, and is used by ==
.