Skip to main content

context_core/
lib.rs

1//! Deterministic context selection engine for AI agents and LLMs.
2//!
3//! `context-core` provides document ingestion, cache building, content-hash
4//! versioning, term-frequency scoring, and token-budgeted selection. All
5//! operations are deterministic — identical inputs always produce identical
6//! outputs, byte-for-byte.
7//!
8//! See <https://github.com/contextenginehq/context-engine> for the full platform.
9
10pub mod cache;
11pub mod compression;
12pub mod document;
13pub mod selection;
14pub mod types;