Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExampleStoreConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExampleStoreConfig
- 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
-
#vertex_embedding_model ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ExampleStoreConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1ExampleStoreConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ExampleStoreConfig
Returns a new instance of GoogleCloudAiplatformV1beta1ExampleStoreConfig.
17753 17754 17755 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17753 def initialize(**args) update!(**args) end |
Instance Attribute Details
#vertex_embedding_model ⇒ String
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
17751 17752 17753 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17751 def @vertex_embedding_model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17758 17759 17760 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 17758 def update!(**args) @vertex_embedding_model = args[:vertex_embedding_model] if args.key?(:vertex_embedding_model) end |