Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Generator
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Generator
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
LLM generator.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#inference_parameter ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InferenceParameter
The parameters of inference.
-
#name ⇒ String
Output only.
-
#summarization_context ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SummarizationContext
Summarization context that customer can configure.
-
#trigger_event ⇒ String
Optional.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2Generator
constructor
A new instance of GoogleCloudDialogflowV2Generator.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2Generator
Returns a new instance of GoogleCloudDialogflowV2Generator.
10947 10948 10949 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10947 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Creation time of this generator.
Corresponds to the JSON property createTime
10913 10914 10915 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10913 def create_time @create_time end |
#description ⇒ String
Optional. Human readable description of the generator.
Corresponds to the JSON property description
10918 10919 10920 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10918 def description @description end |
#inference_parameter ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InferenceParameter
The parameters of inference.
Corresponds to the JSON property inferenceParameter
10923 10924 10925 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10923 def inference_parameter @inference_parameter end |
#name ⇒ String
Output only. Identifier. The resource name of the generator. Format: projects/
/locations//generators/
Corresponds to the JSON property name
10929 10930 10931 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10929 def name @name end |
#summarization_context ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SummarizationContext
Summarization context that customer can configure.
Corresponds to the JSON property summarizationContext
10934 10935 10936 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10934 def summarization_context @summarization_context end |
#trigger_event ⇒ String
Optional. The trigger event of the generator. It defines when the generator is
triggered in a conversation.
Corresponds to the JSON property triggerEvent
10940 10941 10942 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10940 def trigger_event @trigger_event end |
#update_time ⇒ String
Output only. Update time of this generator.
Corresponds to the JSON property updateTime
10945 10946 10947 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10945 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10952 10953 10954 10955 10956 10957 10958 10959 10960 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10952 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @inference_parameter = args[:inference_parameter] if args.key?(:inference_parameter) @name = args[:name] if args.key?(:name) @summarization_context = args[:summarization_context] if args.key?(:summarization_context) @trigger_event = args[:trigger_event] if args.key?(:trigger_event) @update_time = args[:update_time] if args.key?(:update_time) end |