Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenerativeSettingsFallbackSettingsPromptTemplate

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

Overview

Prompt template.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3GenerativeSettingsFallbackSettingsPromptTemplate

Returns a new instance of GoogleCloudDialogflowCxV3GenerativeSettingsFallbackSettingsPromptTemplate.



3256
3257
3258
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3256

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

Instance Attribute Details

#display_nameString

Prompt name. Corresponds to the JSON property displayName

Returns:

  • (String)


3241
3242
3243
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3241

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)


3246
3247
3248
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3246

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)


3254
3255
3256
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3254

def prompt_text
  @prompt_text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3261
3262
3263
3264
3265
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3261

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