zeph-index 0.11.5

AST-based code indexing and semantic retrieval for Zeph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! AST-based code indexing, semantic retrieval, and repo map generation.
//!
//! Provides a Code RAG pipeline: tree-sitter parses source into AST chunks,
//! chunks are embedded and stored in Qdrant, and retrieved via hybrid search
//! (semantic + grep routing) for injection into the agent context window.

pub(crate) mod chunker;
pub(crate) mod context;
pub mod error;
pub mod indexer;
pub(crate) mod languages;
pub mod repo_map;
pub mod retriever;
pub mod store;
pub mod watcher;

pub use error::{IndexError, Result};