Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InputAudioConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InputAudioConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
Instructs the speech recognizer on how to process the audio content.
Instance Attribute Summary collapse
-
#audio_encoding ⇒ String
Required.
-
#enable_word_info ⇒ Boolean
(also: #enable_word_info?)
Optional.
-
#language_code ⇒ String
Required.
-
#model ⇒ String
Optional.
-
#model_variant ⇒ String
Optional.
-
#phrase_hints ⇒ Array<String>
Optional.
-
#sample_rate_hertz ⇒ Fixnum
Required.
-
#single_utterance ⇒ Boolean
(also: #single_utterance?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1InputAudioConfig
constructor
A new instance of GoogleCloudDialogflowV2beta1InputAudioConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1InputAudioConfig
Returns a new instance of GoogleCloudDialogflowV2beta1InputAudioConfig
2571 2572 2573 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2571 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_encoding ⇒ String
Required. Audio encoding of the audio content to process.
Corresponds to the JSON property audioEncoding
2496 2497 2498 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2496 def audio_encoding @audio_encoding end |
#enable_word_info ⇒ Boolean Also known as: enable_word_info?
Optional. 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.
Corresponds to the JSON property enableWordInfo
2504 2505 2506 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2504 def enable_word_info @enable_word_info end |
#language_code ⇒ String
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.
Corresponds to the JSON property languageCode
2514 2515 2516 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2514 def language_code @language_code end |
#model ⇒ String
Optional. 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.
Corresponds to the JSON property model
2530 2531 2532 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2530 def model @model end |
#model_variant ⇒ String
Optional. Which variant of the Speech model to use.
Corresponds to the JSON property modelVariant
2535 2536 2537 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2535 def model_variant @model_variant end |
#phrase_hints ⇒ Array<String>
Optional. 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.
Corresponds to the JSON property phraseHints
2545 2546 2547 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2545 def phrase_hints @phrase_hints end |
#sample_rate_hertz ⇒ Fixnum
Required. Sample rate (in Hertz) of the audio content sent in the query.
Refer to
Cloud Speech API
documentation for
more details.
Corresponds to the JSON property sampleRateHertz
2554 2555 2556 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2554 def sample_rate_hertz @sample_rate_hertz end |
#single_utterance ⇒ Boolean Also known as: single_utterance?
Optional. 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.
Corresponds to the JSON property singleUtterance
2568 2569 2570 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2568 def single_utterance @single_utterance end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2576 def update!(**args) @audio_encoding = args[:audio_encoding] if args.key?(:audio_encoding) @enable_word_info = args[:enable_word_info] if args.key?(:enable_word_info) @language_code = args[:language_code] if args.key?(:language_code) @model = args[:model] if args.key?(:model) @model_variant = args[:model_variant] if args.key?(:model_variant) @phrase_hints = args[:phrase_hints] if args.key?(:phrase_hints) @sample_rate_hertz = args[:sample_rate_hertz] if args.key?(:sample_rate_hertz) @single_utterance = args[:single_utterance] if args.key?(:single_utterance) end |