Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateContentResponse

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

Response message for [PredictionService.GenerateContent].

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1GenerateContentResponse

Returns a new instance of GoogleCloudAiplatformV1beta1GenerateContentResponse.



12899
12900
12901
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12899

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

Instance Attribute Details

#candidatesArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Candidate>

Output only. Generated candidates. Corresponds to the JSON property candidates



12882
12883
12884
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12882

def candidates
  @candidates
end

#model_versionString

Output only. The model version used to generate the response. Corresponds to the JSON property modelVersion

Returns:

  • (String)


12887
12888
12889
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12887

def model_version
  @model_version
end

#prompt_feedbackGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateContentResponsePromptFeedback

Content filter results for a prompt sent in the request. Corresponds to the JSON property promptFeedback



12892
12893
12894
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12892

def prompt_feedback
  @prompt_feedback
end

#usage_metadataGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata

Usage metadata about response(s). Corresponds to the JSON property usageMetadata



12897
12898
12899
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12897

def 
  @usage_metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12904
12905
12906
12907
12908
12909
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12904

def update!(**args)
  @candidates = args[:candidates] if args.key?(:candidates)
  @model_version = args[:model_version] if args.key?(:model_version)
  @prompt_feedback = args[:prompt_feedback] if args.key?(:prompt_feedback)
  @usage_metadata = args[:usage_metadata] if args.key?(:usage_metadata)
end