class
Qdrant::Api::VectorStruct
- Qdrant::Api::VectorStruct
- Reference
- Object
Overview
Full vector data per point separator with single and multiple vector modes VectorStruct (OpenAPI anyOf): a value matching at least one of the listed schemas. Implemented as a thin wrapper that (de)serialises by trying each member in order (the first that parses wins), so it transparently handles scalar, array and object members.
Defined in:
qdrant-api/models/vector_struct.crConstructors
- .from_json(string_or_io) : self
- .from_json_any(data : JSON::Any) : self
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(value : Array(Array(Float32)))
- .new(value : Array(Float32))
- .new(value : Document)
- .new(value : Hash(String, Vector))
- .new(value : Image)
- .new(value : InferenceObject)
- .new(pull : JSON::PullParser)
Class Method Summary
-
.openapi_any_of
List of classes defined in anyOf (OpenAPI v3)
Instance Method Summary
- #to_json(builder : JSON::Builder)
- #to_yaml(builder : YAML::Nodes::Builder)
- #value : Array(Array(Float32)) | Array(Float32) | Hash(String, Qdrant::Api::Vector) | Qdrant::Api::Document | Qdrant::Api::Image | Qdrant::Api::InferenceObject
Constructor Detail
Class Method Detail
Instance Method Detail
def value : Array(Array(Float32)) | Array(Float32) | Hash(String, Qdrant::Api::Vector) | Qdrant::Api::Document | Qdrant::Api::Image | Qdrant::Api::InferenceObject
#