Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals
- 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
Diagnostic info related to the rewriter model call.
Instance Attribute Summary collapse
-
#model_output ⇒ String
Output of the generative model.
-
#rendered_prompt ⇒ String
Prompt as sent to the model.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals
constructor
A new instance of GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals
Returns a new instance of GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals.
5644 5645 5646 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5644 def initialize(**args) update!(**args) end |
Instance Attribute Details
#model_output ⇒ String
Output of the generative model.
Corresponds to the JSON property modelOutput
5637 5638 5639 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5637 def model_output @model_output end |
#rendered_prompt ⇒ String
Prompt as sent to the model.
Corresponds to the JSON property renderedPrompt
5642 5643 5644 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5642 def rendered_prompt @rendered_prompt end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5649 5650 5651 5652 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5649 def update!(**args) @model_output = args[:model_output] if args.key?(:model_output) @rendered_prompt = args[:rendered_prompt] if args.key?(:rendered_prompt) end |