Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationInstanceInstanceData

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/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) ⇒ GoogleCloudAiplatformV1EvaluationInstanceInstanceData

Returns a new instance of GoogleCloudAiplatformV1EvaluationInstanceInstanceData.



9159
9160
9161
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9159

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

Instance Attribute Details

#contentsGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationInstanceInstanceDataContents

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



9152
9153
9154
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9152

def contents
  @contents
end

#textString

Text data. Corresponds to the JSON property text

Returns:

  • (String)


9157
9158
9159
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9157

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9164
9165
9166
9167
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9164

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