sqlite-knowledge-graph 0.11.0

A Rust library for building and querying knowledge graphs using SQLite as the backend, with graph algorithms, vector search, and RAG support
Documentation
1
2
3
4
5
6
7
8
9
//! Vector module for semantic search with cosine similarity and TurboQuant indexing.

pub mod store;
pub mod turboquant;

pub use store::{cosine_similarity, SearchResult, VectorStore};
pub use turboquant::{
    LinearScanIndex, LinearScanStats, TurboQuantConfig, TurboQuantIndex, TurboQuantStats,
};