pub struct GoogleCloudDialogflowV2beta1SpeechToTextConfig {
pub model: Option<String>,
pub speech_model_variant: Option<String>,
pub use_timeout_based_endpointing: Option<bool>,
}Expand description
Configures speech transcription for ConversationProfile.
This type is not used in any activity, and only used as part of another schema.
Fields§
§model: Option<String>Which Speech model to select. Select the model best suited to your domain to get best results. If a model is not explicitly specified, then Dialogflow auto-selects a model based on other parameters in the SpeechToTextConfig and Agent settings. If enhanced speech model is enabled for the agent and an enhanced version of the specified model for the language does not exist, then the speech is recognized using the standard version of the specified model. Refer to Cloud Speech API documentation for more details. If you specify a model, the following models typically have the best performance: - phone_call (best for Agent Assist and telephony) - latest_short (best for Dialogflow non-telephony) - command_and_search Leave this field unspecified to use Agent Speech settings for model selection.
speech_model_variant: Option<String>The speech model used in speech to text. SPEECH_MODEL_VARIANT_UNSPECIFIED, USE_BEST_AVAILABLE will be treated as USE_ENHANCED. It can be overridden in AnalyzeContentRequest and StreamingAnalyzeContentRequest request. If enhanced model variant is specified and an enhanced version of the specified model for the language does not exist, then it would emit an error.
use_timeout_based_endpointing: Option<bool>Use timeout based endpointing, interpreting endpointer sensitivy as seconds of timeout value.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2beta1SpeechToTextConfig
impl Clone for GoogleCloudDialogflowV2beta1SpeechToTextConfig
Source§fn clone(&self) -> GoogleCloudDialogflowV2beta1SpeechToTextConfig
fn clone(&self) -> GoogleCloudDialogflowV2beta1SpeechToTextConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudDialogflowV2beta1SpeechToTextConfig
impl Default for GoogleCloudDialogflowV2beta1SpeechToTextConfig
Source§fn default() -> GoogleCloudDialogflowV2beta1SpeechToTextConfig
fn default() -> GoogleCloudDialogflowV2beta1SpeechToTextConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2beta1SpeechToTextConfig
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2beta1SpeechToTextConfig
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>,
impl Part for GoogleCloudDialogflowV2beta1SpeechToTextConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2beta1SpeechToTextConfig
impl RefUnwindSafe for GoogleCloudDialogflowV2beta1SpeechToTextConfig
impl Send for GoogleCloudDialogflowV2beta1SpeechToTextConfig
impl Sync for GoogleCloudDialogflowV2beta1SpeechToTextConfig
impl Unpin for GoogleCloudDialogflowV2beta1SpeechToTextConfig
impl UnwindSafe for GoogleCloudDialogflowV2beta1SpeechToTextConfig
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
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more