mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-06 18:10:58 -05:00
* include document & image objects into grpc API * introduce image and object to rest api * minor refactoring * rename Vector -> VectorInternal * decompose vector data structures * add schema * fmt * grpc docs * fix conversion * fix clippy * fix another conversion * rename VectorInput -> VectorInputInternal * replace grpc TryFrom with async functions * fmt * replace rest TryFrom with async functions * add image and object into query rest * separate inference related conversions * move json-related conversions into a separate file * move vector-related transformations into a separate file * move more vector related-conversions into dedicated module
32 lines
1.1 KiB
Rust
32 lines
1.1 KiB
Rust
#[allow(dead_code)] // May contain functions used in different binaries. Not actually dead
|
|
pub mod collections;
|
|
#[allow(dead_code)] // May contain functions used in different binaries. Not actually dead
|
|
pub mod error_reporting;
|
|
#[allow(dead_code)]
|
|
pub mod health;
|
|
#[allow(dead_code)] // May contain functions used in different binaries. Not actually dead
|
|
pub mod helpers;
|
|
pub mod http_client;
|
|
pub mod metrics;
|
|
#[allow(dead_code)] // May contain functions used in different binaries. Not actually dead
|
|
pub mod points;
|
|
pub mod snapshots;
|
|
#[allow(dead_code)] // May contain functions used in different binaries. Not actually dead
|
|
pub mod stacktrace;
|
|
#[allow(dead_code)] // May contain functions used in different binaries. Not actually dead
|
|
pub mod telemetry;
|
|
pub mod telemetry_ops;
|
|
#[allow(dead_code)] // May contain functions used in different binaries. Not actually dead
|
|
pub mod telemetry_reporting;
|
|
|
|
pub mod auth;
|
|
|
|
pub mod strings;
|
|
|
|
pub mod debugger;
|
|
|
|
#[allow(dead_code)] // May contain functions used in different binaries. Not actually dead
|
|
pub mod inference;
|
|
|
|
pub mod pyroscope_state;
|