Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenerativeSettings

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

Settings for Generative AI.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3GenerativeSettings

Returns a new instance of GoogleCloudDialogflowCxV3GenerativeSettings.



4101
4102
4103
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4101

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

Instance Attribute Details

#fallback_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenerativeSettingsFallbackSettings

Settings for Generative Fallback. Corresponds to the JSON property fallbackSettings



4072
4073
4074
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4072

def fallback_settings
  @fallback_settings
end

#generative_safety_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettings

Settings for Generative Safety. Corresponds to the JSON property generativeSafetySettings



4077
4078
4079
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4077

def generative_safety_settings
  @generative_safety_settings
end

#knowledge_connector_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3GenerativeSettingsKnowledgeConnectorSettings

Settings for knowledge connector. These parameters are used for LLM prompt like "You are . You are a helpful and verbose at , . Your task is to help humans on ". Corresponds to the JSON property knowledgeConnectorSettings



4084
4085
4086
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4084

def knowledge_connector_settings
  @knowledge_connector_settings
end

#language_codeString

Language for this settings. Corresponds to the JSON property languageCode

Returns:

  • (String)


4089
4090
4091
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4089

def language_code
  @language_code
end

#llm_model_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings

Settings for LLM models. Corresponds to the JSON property llmModelSettings



4094
4095
4096
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4094

def llm_model_settings
  @llm_model_settings
end

#nameString

Format: projects//locations//agents//generativeSettings. Corresponds to the JSON property name

Returns:

  • (String)


4099
4100
4101
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4099

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4106
4107
4108
4109
4110
4111
4112
4113
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4106

def update!(**args)
  @fallback_settings = args[:fallback_settings] if args.key?(:fallback_settings)
  @generative_safety_settings = args[:generative_safety_settings] if args.key?(:generative_safety_settings)
  @knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
  @language_code = args[:language_code] if args.key?(:language_code)
  @llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
  @name = args[:name] if args.key?(:name)
end