Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplate

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

Prompt template.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplate

Returns a new instance of GoogleCloudDialogflowCxV3beta1GenerativeSettingsFallbackSettingsPromptTemplate.



6742
6743
6744
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6742

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

Instance Attribute Details

#display_nameString

Prompt name. Corresponds to the JSON property displayName

Returns:

  • (String)


6727
6728
6729
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6727

def display_name
  @display_name
end

#frozenBoolean Also known as: frozen?

If the flag is true, the prompt is frozen and cannot be modified by users. Corresponds to the JSON property frozen

Returns:

  • (Boolean)


6732
6733
6734
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6732

def frozen
  @frozen
end

#prompt_textString

Prompt text that is sent to a LLM on no-match default, placeholders are filled downstream. For example: "Here is a conversation $conversation, a response is: " Corresponds to the JSON property promptText

Returns:

  • (String)


6740
6741
6742
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6740

def prompt_text
  @prompt_text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6747
6748
6749
6750
6751
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6747

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @frozen = args[:frozen] if args.key?(:frozen)
  @prompt_text = args[:prompt_text] if args.key?(:prompt_text)
end