context_harness_core/
lib.rs

1//! # Context Harness Core
2//!
3//! Shared, WASM-safe logic for Context Harness: data models, chunking,
4//! store abstraction, search algorithm, and embedding trait.
5//!
6//! This crate contains no tokio, sqlx, filesystem I/O, or other
7//! native-only dependencies. It compiles to both native targets and
8//! `wasm32-unknown-unknown`.
9
10pub mod chunk;
11pub mod embedding;
12pub mod models;
13pub mod search;
14pub mod store;