hallouminate 0.2.1

A markdown corpus indexer for LLMs to build and query their own per-repo wikis.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Hallouminate: a local semantic search and retrieval engine over code and
//! markdown corpora.
//!
//! The crate follows a hexagonal layout:
//!
//! - [`domain`] holds the core logic — corpora, indexing, embeddings, search,
//!   and the ground (markdown wiki) store — with no I/O framework concerns.
//! - [`adapters`] wires the domain to the outside world: the LanceDB vector
//!   store and the MCP server.
//! - [`app`] is the entry layer: CLI parsing, configuration, the daemon, and
//!   logging.

pub mod adapters;
pub mod app;
pub mod domain;