Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpecEmbeddingVector
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpecEmbeddingVector
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Embedding vector.
Instance Attribute Summary collapse
-
#field_path ⇒ String
Embedding field path in schema.
-
#vector ⇒ Array<Float>
Query embedding vector.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpecEmbeddingVector
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpecEmbeddingVector.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpecEmbeddingVector
Returns a new instance of GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpecEmbeddingVector.
14370 14371 14372 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14370 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field_path ⇒ String
Embedding field path in schema.
Corresponds to the JSON property fieldPath
14363 14364 14365 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14363 def field_path @field_path end |
#vector ⇒ Array<Float>
Query embedding vector.
Corresponds to the JSON property vector
14368 14369 14370 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14368 def vector @vector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14375 14376 14377 14378 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14375 def update!(**args) @field_path = args[:field_path] if args.key?(:field_path) @vector = args[:vector] if args.key?(:vector) end |