oasysdb 0.7.3

Hybrid vector store with SQL integration & multi-index support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![warn(missing_docs)]
#![warn(unused_qualifications)]
#![doc = include_str!("../readme.md")]
#![doc(html_favicon_url = "https://i.postimg.cc/W3T230zk/favicon.png")]
#![doc(html_logo_url = "https://i.postimg.cc/Vv0HPVwB/logo.png")]

pub(crate) mod utils;

/// Primary module for vector database operations.
pub mod db;
/// Module for managing database indices and related types.
pub mod indices;
/// Convenience re-exports of the public APIs.
pub mod prelude;
/// Database utility types and functions.
pub mod types;