Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GenerativeSettingsKnowledgeConnectorSettings

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 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 ".

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1GenerativeSettingsKnowledgeConnectorSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1GenerativeSettingsKnowledgeConnectorSettings.



9059
9060
9061
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9059

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

Instance Attribute Details

#agentString

Name of the virtual agent. Used for LLM prompt. Can be left empty. Corresponds to the JSON property agent

Returns:

  • (String)


9027
9028
9029
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9027

def agent
  @agent
end

#agent_identityString

Identity of the agent, e.g. "virtual agent", "AI assistant". Corresponds to the JSON property agentIdentity

Returns:

  • (String)


9032
9033
9034
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9032

def agent_identity
  @agent_identity
end

#agent_scopeString

Agent scope, e.g. "Example company website", "internal Example company website for employees", "manual of car owner". Corresponds to the JSON property agentScope

Returns:

  • (String)


9038
9039
9040
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9038

def agent_scope
  @agent_scope
end

#businessString

Name of the company, organization or other entity that the agent represents. Used for knowledge connector LLM prompt and for knowledge search. Corresponds to the JSON property business

Returns:

  • (String)


9044
9045
9046
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9044

def business
  @business
end

#business_descriptionString

Company description, used for LLM prompt, e.g. "a family company selling freshly roasted coffee beans". Corresponds to the JSON property businessDescription

Returns:

  • (String)


9050
9051
9052
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9050

def business_description
  @business_description
end

#disable_data_store_fallbackBoolean Also known as: disable_data_store_fallback?

Whether to disable fallback to Data Store search results (in case the LLM couldn't pick a proper answer). Per default the feature is enabled. Corresponds to the JSON property disableDataStoreFallback

Returns:

  • (Boolean)


9056
9057
9058
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9056

def disable_data_store_fallback
  @disable_data_store_fallback
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9064
9065
9066
9067
9068
9069
9070
9071
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9064

def update!(**args)
  @agent = args[:agent] if args.key?(:agent)
  @agent_identity = args[:agent_identity] if args.key?(:agent_identity)
  @agent_scope = args[:agent_scope] if args.key?(:agent_scope)
  @business = args[:business] if args.key?(:business)
  @business_description = args[:business_description] if args.key?(:business_description)
  @disable_data_store_fallback = args[:disable_data_store_fallback] if args.key?(:disable_data_store_fallback)
end