Show / Hide Table of Contents

Class GoogleCloudDialogflowV2InputAudioConfig

Instructs the speech recognizer how to process the audio content.

Inheritance
System.Object
GoogleCloudDialogflowV2InputAudioConfig
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dialogflow.v2.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleCloudDialogflowV2InputAudioConfig : IDirectResponseSchema

Properties

AudioEncoding

Required. Audio encoding of the audio content to process.

Declaration
[JsonProperty("audioEncoding")]
public virtual string AudioEncoding { get; set; }
Property Value
Type Description
System.String

DisableNoSpeechRecognizedEvent

Only used in Participants.AnalyzeContent and Participants.StreamingAnalyzeContent. If false and recognition doesn't return any result, trigger NO_SPEECH_RECOGNIZED event to Dialogflow agent.

Declaration
[JsonProperty("disableNoSpeechRecognizedEvent")]
public virtual bool? DisableNoSpeechRecognizedEvent { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

EnableWordInfo

If true, Dialogflow returns SpeechWordInfo in StreamingRecognitionResult with information about the recognized speech words, e.g. start and end time offsets. If false or unspecified, Speech doesn't return any word-level information.

Declaration
[JsonProperty("enableWordInfo")]
public virtual bool? EnableWordInfo { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LanguageCode

Required. The language of the supplied audio. Dialogflow does not do translations. See Language Support for a list of the currently supported language codes. Note that queries in the same session do not necessarily need to specify the same language.

Declaration
[JsonProperty("languageCode")]
public virtual string LanguageCode { get; set; }
Property Value
Type Description
System.String

Model

Which Speech model to select for the given request. Select the model best suited to your domain to get best results. If a model is not explicitly specified, then we auto-select a model based on the parameters in the InputAudioConfig. 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.

Declaration
[JsonProperty("model")]
public virtual string Model { get; set; }
Property Value
Type Description
System.String

ModelVariant

Which variant of the Speech model to use.

Declaration
[JsonProperty("modelVariant")]
public virtual string ModelVariant { get; set; }
Property Value
Type Description
System.String

PhraseHints

A list of strings containing words and phrases that the speech recognizer should recognize with higher likelihood. See the Cloud Speech documentation for more details. This field is deprecated. Please use speech_contexts instead. If you specify both phrase_hints and speech_contexts, Dialogflow will treat the phrase_hints as a single additional SpeechContext.

Declaration
[JsonProperty("phraseHints")]
public virtual IList<string> PhraseHints { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

SampleRateHertz

Required. Sample rate (in Hertz) of the audio content sent in the query. Refer to Cloud Speech API documentation for more details.

Declaration
[JsonProperty("sampleRateHertz")]
public virtual int? SampleRateHertz { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

SingleUtterance

If false (default), recognition does not cease until the client closes the stream. If true, the recognizer will detect a single spoken utterance in input audio. Recognition ceases when it detects the audio's voice has stopped or paused. In this case, once a detected intent is received, the client should close the stream and start a new request with a new stream as needed. Note: This setting is relevant only for streaming methods. Note: When specified, InputAudioConfig.single_utterance takes precedence over StreamingDetectIntentRequest.single_utterance.

Declaration
[JsonProperty("singleUtterance")]
public virtual bool? SingleUtterance { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

SpeechContexts

Context information to assist speech recognition. See the Cloud Speech documentation for more details.

Declaration
[JsonProperty("speechContexts")]
public virtual IList<GoogleCloudDialogflowV2SpeechContext> SpeechContexts { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudDialogflowV2SpeechContext>

Implements

IDirectResponseSchema
In This Article
Back to top