class Qdrant::Api::VectorNameConfig

Overview

Configuration for creating a new named vector. Contains only the immutable properties that define a vector space. Storage type, index, and quantization are determined automatically based on the segment type and can be configured separately later. Example JSON for a dense vector: json { \"dense\": { \"size\": 768, \"distance\": \"Cosine\" } } Example JSON for a sparse vector: json { \"sparse\": { \"modifier\": \"Idf\" } } VectorNameConfig (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_name_config.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.from_json(string_or_io) : self #

[View source]
def self.from_json_any(data : JSON::Any) : self #

[View source]
def self.new(ctx : YAML::ParseContext, node : YAML::Nodes::Node) #

[View source]
def self.new(value : DenseVectorNameConfig) #

[View source]
def self.new(value : SparseVectorNameConfig) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]

Class Method Detail

def self.openapi_any_of #

List of classes defined in anyOf (OpenAPI v3)


[View source]

Instance Method Detail

def to_json(builder : JSON::Builder) #

[View source]
def to_yaml(builder : YAML::Nodes::Builder) #

[View source]

[View source]