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.



19210
19211
19212
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19210

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)


19208
19209
19210
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19208

def vertex_embedding_model
  @vertex_embedding_model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



19215
19216
19217
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 19215

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