meme 0.7.0

Long term memory for AI agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Three-stage memory pipeline: compression, reconciliation, and retrieval.

mod extractor;
mod generator;
mod reconciler;
mod retriever;

pub(crate) use extractor::Extractor;
pub(crate) use generator::generate;
pub(crate) use reconciler::reconcile;
pub(crate) use retriever::HybridRetriever;