ripvec-core 3.1.2

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
//! Post-v3.0.0: only `config` survives.
//!
//! The disk-cache machinery (manifest, store, diff, file_cache, reindex)
//! was built for the doomed transformer engines and is gone. The surviving
//! ripvec engine is cacheless — `RipvecIndex` is built on first query
//! against a root and lives in process memory.
//!
//! `config` is retained because `.ripvec/config.toml` is still consulted
//! by the search engine for repo-local search settings (extension
//! whitelists, ignore globs).

pub mod config;