class Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1SpeechContext

Provides “hints” to the speech recognizer to favor specific words and phrases in the results.

Attributes

phrases[RW]

Optional. A list of strings containing words and phrases “hints” so that the speech recognition is more likely to recognize them. This can be used to improve the accuracy for specific words and phrases, for example, if specific commands are typically spoken by the user. This can also be used to add additional words to the vocabulary of the recognizer. See [usage limits](https: //cloud.google.com/speech/limits#content). Corresponds to the JSON property `phrases` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/videointelligence_v1/classes.rb, line 924
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/videointelligence_v1/classes.rb, line 929
def update!(**args)
  @phrases = args[:phrases] if args.key?(:phrases)
end