qdrant-edge 0.8.0

A lightweight, in-process vector search engine designed for embedded devices, autonomous systems, and mobile agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod builder;
mod field_index;
mod field_index_read;
mod field_index_read_impl;
mod payload_field_index;
mod read_only;
mod value_indexer;

pub use builder::{FieldIndexBuilder, FieldIndexBuilderTrait};
pub use field_index::FieldIndex;
pub use field_index_read::FieldIndexRead;
pub use payload_field_index::{PayloadFieldIndex, PayloadFieldIndexRead};
#[allow(unused_imports)]
pub(crate) use read_only::LiveReload;
pub use read_only::ReadOnlyFieldIndex;
pub use value_indexer::ValueIndexer;