ripvec-core 0.13.17

Semantic code search engine — GPU-accelerated ModernBERT embeddings, tree-sitter chunking, hybrid BM25+vector ranking
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;