Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals

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

Diagnostic info related to the rewriter model call.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals

Returns a new instance of GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals.



1569
1570
1571
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1569

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

Instance Attribute Details

#modelString

Name of the generative model. For example, "gemini-ultra", "gemini-pro", " gemini-1.5-flash" etc. Defaults to "Other" if the model is unknown. Corresponds to the JSON property model

Returns:

  • (String)


1557
1558
1559
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1557

def model
  @model
end

#model_outputString

Output of the generative model. Corresponds to the JSON property modelOutput

Returns:

  • (String)


1562
1563
1564
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1562

def model_output
  @model_output
end

#rendered_promptString

Prompt as sent to the model. Corresponds to the JSON property renderedPrompt

Returns:

  • (String)


1567
1568
1569
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1567

def rendered_prompt
  @rendered_prompt
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1574
1575
1576
1577
1578
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1574

def update!(**args)
  @model = args[:model] if args.key?(:model)
  @model_output = args[:model_output] if args.key?(:model_output)
  @rendered_prompt = args[:rendered_prompt] if args.key?(:rendered_prompt)
end