Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

Settings for Generative Fallback.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettings.



6706
6707
6708
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6706

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#prompt_templatesArray<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplate>

Stored prompts that can be selected, for example default templates like " conservative" or "chatty", or user defined ones. Corresponds to the JSON property promptTemplates



6699
6700
6701
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6699

def prompt_templates
  @prompt_templates
end

#selected_promptString

Display name of the selected prompt. Corresponds to the JSON property selectedPrompt

Returns:

  • (String)


6704
6705
6706
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6704

def selected_prompt
  @selected_prompt
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6711
6712
6713
6714
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6711

def update!(**args)
  @prompt_templates = args[:prompt_templates] if args.key?(:prompt_templates)
  @selected_prompt = args[:selected_prompt] if args.key?(:selected_prompt)
end