veles_core/lib.rs
1//! **veles-core** — Fast code search library for agents.
2//!
3//! Provides indexing, chunking, BM25, dense vector search, and hybrid ranking.
4//! No Python dependencies — pure Rust using [model2vec-rs](https://github.com/MinishLab/model2vec-rs)
5//! for static embeddings.
6
7pub mod chunker;
8pub mod index;
9pub mod model;
10pub mod persist;
11pub mod ranking;
12pub mod symbols;
13pub mod veles_index;
14pub mod tokenizer;
15pub mod types;
16pub mod walker;
17
18// Re-export the main types.
19pub use veles_index::VelesIndex;
20pub use types::{Chunk, IndexStats, SearchMode, SearchResult};