Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExampleStoreConfig

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

Configuration for the Example Store.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ExampleStoreConfig

Returns a new instance of GoogleCloudAiplatformV1beta1ExampleStoreConfig.



20919
20920
20921
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20919

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

Instance Attribute Details

#vertex_embedding_modelString

Required. The embedding model to be used for vector embedding. Immutable. Supported models: * "text-embedding-005" * "text-multilingual-embedding-002" Corresponds to the JSON property vertexEmbeddingModel

Returns:

  • (String)


20917
20918
20919
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20917

def vertex_embedding_model
  @vertex_embedding_model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20924
20925
20926
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20924

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