Skip to main content

tinycortex/
lib.rs

1//! Rust core for TinyCortex.
2//!
3//! TinyCortex is the memory engine extracted from OpenHuman as a standalone,
4//! config-driven, test-driven library. OpenHuman (or any other host) imports
5//! this crate to ingest source-scoped payloads, canonicalize and chunk them,
6//! score and embed them, build summary trees, and retrieve explainable context.
7//!
8//! The public surface lives under [`memory`]. See `docs/openhuman-memory-engine-spec.md`
9//! for the functional specification and ownership boundaries.
10
11pub mod memory;