Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EvaluationInstanceInstanceData

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb

Overview

Instance data used to populate placeholders in a metric prompt template.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1EvaluationInstanceInstanceData

Returns a new instance of GoogleCloudAiplatformV1beta1EvaluationInstanceInstanceData.



16042
16043
16044
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16042

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

Instance Attribute Details

#contentsGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EvaluationInstanceInstanceDataContents

List of standard Content messages from Gemini API. Corresponds to the JSON property contents



16035
16036
16037
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16035

def contents
  @contents
end

#textString

Text data. Corresponds to the JSON property text

Returns:

  • (String)


16040
16041
16042
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16040

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16047
16048
16049
16050
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16047

def update!(**args)
  @contents = args[:contents] if args.key?(:contents)
  @text = args[:text] if args.key?(:text)
end