sqlite-knowledge-graph 0.10.2

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
10
use thiserror::Error;

#[derive(Error, Debug)]
pub enum RagError {
    #[error("No results found")]
    NoResults,

    #[error("Embedding failed: {0}")]
    Embedding(String),
}