ruvector_sona/loops/mod.rs
1//! SONA Learning Loops
2//!
3//! Three-tier temporal learning architecture:
4//! - Loop A (Instant): Per-request trajectory recording and micro-LoRA updates
5//! - Loop B (Background): Hourly pattern extraction and base LoRA updates
6//! - Loop C (Deep): Weekly dream consolidation and full EWC++ update
7
8pub mod instant;
9pub mod background;
10pub mod coordinator;
11
12pub use instant::InstantLoop;
13pub use background::BackgroundLoop;
14pub use coordinator::LoopCoordinator;