ripvec-core 1.0.3

Semantic code + document search engine. Cacheless static-embedding + cross-encoder rerank by default; optional ModernBERT/BGE transformer engines with GPU backends. Tree-sitter chunking, hybrid BM25 + PageRank, composable ranking layers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Persistent index cache with content-addressed object store.
//!
//! Stores per-file chunks and embeddings in a git-style object store,
//! tracks file state in a Merkle-tree manifest, and supports incremental
//! reindexing by diffing against the filesystem.

pub mod config;
pub mod diff;
pub mod file_cache;
pub mod manifest;
pub mod reindex;
pub mod store;