code-graph-cli 3.0.2

Code intelligence engine for TypeScript/JavaScript/Rust/Python/Go — query the dependency graph instead of reading source files.
1
2
3
4
5
6
7
8
9
10
11
12
/// RAG (Retrieval-Augmented Generation) module.
///
/// Provides vector indexing via fastembed + usearch, LLM integration via genai,
/// and a conversational agent that grounds answers in the code graph.
///
/// Gated behind the `rag` Cargo feature — compile with `--features rag` to enable.
pub mod agent;
pub mod auth;
pub mod embedding;
pub mod retrieval;
pub mod session;
pub mod vector_store;