Skip to main content

Crate zeph_index

Crate zeph_index 

Source
Expand description

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.

Re-exports§

pub use error::IndexError;
pub use error::Result;
pub use indexer::IndexProgress;

Modules§

error
Error types for zeph-index.
indexer
Project indexing orchestrator: walk → chunk → embed → store.
languages
Language detection and tree-sitter grammar registry.
repo_map
Lightweight structural map of a project (signatures only).
retriever
Hybrid code retrieval: query classification, semantic search, budget packing.
store
Qdrant collection + SQLite metadata for code chunks.
watcher