Class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1ThoughtContent

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

A thought content block.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GenaiVertexV1beta1ThoughtContent

Returns a new instance of GenaiVertexV1beta1ThoughtContent.



4723
4724
4725
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4723

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

Instance Attribute Details

#signatureString

Signature to match the backend source to be part of the generation. Corresponds to the JSON property signature NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


4716
4717
4718
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4716

def signature
  @signature
end

#summaryArray<Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1ThoughtSummaryContent>

A summary of the thought. Corresponds to the JSON property summary



4721
4722
4723
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4721

def summary
  @summary
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4728
4729
4730
4731
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4728

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