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.



12901
12902
12903
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12901

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)


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

def vertex_embedding_model
  @vertex_embedding_model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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