skanda_engine 0.1.0

A zero-dependency, ultra-high-performance retrieval engine designed for the next generation of RAG.
Documentation
pub mod indexer;
pub mod searcher;
pub mod bridge;
pub mod simd_search;
pub mod bitset;
pub mod compression;
pub mod fuzzy_search;

pub use indexer::Indexer;
pub use searcher::{Searcher, SearchResult};
pub use bridge::Bridge;

use thiserror::Error;

#[derive(Error, Debug)]
pub enum SkandaError {
    #[error("IO Error: {0}")]
    Io(#[from] std::io::Error),
    #[error("Invalid Index")]
    InvalidIndex,
    #[error("Empty Query")]
    EmptyQuery,
}