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.
10772 10773 10774 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10772 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
10738 10739 10740 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10738 def create_time @create_time end |
#description ⇒ String
Optional. Human readable description of the generator.
Corresponds to the JSON property description
10743 10744 10745 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10743 def description @description end |
#inference_parameter ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2InferenceParameter
The parameters of inference.
Corresponds to the JSON property inferenceParameter
10748 10749 10750 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10748 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
10754 10755 10756 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10754 def name @name end |
#summarization_context ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SummarizationContext
Summarization context that customer can configure.
Corresponds to the JSON property summarizationContext
10759 10760 10761 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10759 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
10765 10766 10767 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10765 def trigger_event @trigger_event end |
#update_time ⇒ String
Output only. Update time of this generator.
Corresponds to the JSON property updateTime
10770 10771 10772 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10770 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10777 10778 10779 10780 10781 10782 10783 10784 10785 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10777 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 |