zeph-index 0.17.1

AST-based code indexing and semantic retrieval for Zeph
Documentation
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

//! 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 mod languages;
pub mod repo_map;
pub mod retriever;
pub mod store;
pub mod watcher;

pub use error::{IndexError, Result};
pub use indexer::IndexProgress;