Class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingMetadata

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

Overview

Metadata returned to client when grounding is enabled.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1GroundingMetadata

Returns a new instance of GoogleCloudAiplatformV1beta1GroundingMetadata.



925
926
927
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 925

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

Instance Attribute Details

#grounding_attributionsArray<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingAttribution>

Optional. List of grounding attributions. Corresponds to the JSON property groundingAttributions



898
899
900
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 898

def grounding_attributions
  @grounding_attributions
end

#grounding_chunksArray<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunk>

List of supporting references retrieved from specified grounding source. Corresponds to the JSON property groundingChunks



903
904
905
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 903

def grounding_chunks
  @grounding_chunks
end

#grounding_supportsArray<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingSupport>

Optional. List of grounding support. Corresponds to the JSON property groundingSupports



908
909
910
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 908

def grounding_supports
  @grounding_supports
end

#retrieval_queriesArray<String>

Optional. Queries executed by the retrieval tools. Corresponds to the JSON property retrievalQueries

Returns:

  • (Array<String>)


913
914
915
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 913

def retrieval_queries
  @retrieval_queries
end

#search_entry_pointGoogle::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SearchEntryPoint

Google search entry point. Corresponds to the JSON property searchEntryPoint



918
919
920
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 918

def search_entry_point
  @search_entry_point
end

#web_search_queriesArray<String>

Optional. Web search queries for the following-up web search. Corresponds to the JSON property webSearchQueries

Returns:

  • (Array<String>)


923
924
925
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 923

def web_search_queries
  @web_search_queries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



930
931
932
933
934
935
936
937
# File 'lib/google/apis/firebaseml_v2beta/classes.rb', line 930

def update!(**args)
  @grounding_attributions = args[:grounding_attributions] if args.key?(:grounding_attributions)
  @grounding_chunks = args[:grounding_chunks] if args.key?(:grounding_chunks)
  @grounding_supports = args[:grounding_supports] if args.key?(:grounding_supports)
  @retrieval_queries = args[:retrieval_queries] if args.key?(:retrieval_queries)
  @search_entry_point = args[:search_entry_point] if args.key?(:search_entry_point)
  @web_search_queries = args[:web_search_queries] if args.key?(:web_search_queries)
end