engramai 0.2.3

Neuroscience-grounded memory system for AI agents. ACT-R activation, Hebbian learning, Ebbinghaus forgetting, cognitive consolidation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Memory synthesis engine — cluster discovery, gate checking, insight generation.
//!
//! Submodules will be activated as they are implemented:
//! - `types`: All type definitions (active)
//! - `cluster`: Cluster discovery algorithm
//! - `gate`: Gate check logic
//! - `insight`: LLM-based insight generation
//! - `provenance`: Provenance tracking and undo
//! - `engine`: Full synthesis engine orchestration

pub mod types;
pub mod cluster;
pub mod gate;
pub mod insight;
pub mod provenance;
pub mod engine;