mirror of
https://github.com/ruvnet/RuView
synced 2026-07-25 17:51:48 +00:00
15 lines
464 B
Rust
15 lines
464 B
Rust
//! SONA Learning Loops
|
|
//!
|
|
//! Three-tier temporal learning architecture:
|
|
//! - Loop A (Instant): Per-request trajectory recording and micro-LoRA updates
|
|
//! - Loop B (Background): Hourly pattern extraction and base LoRA updates
|
|
//! - Loop C (Deep): Weekly dream consolidation and full EWC++ update
|
|
|
|
pub mod background;
|
|
pub mod coordinator;
|
|
pub mod instant;
|
|
|
|
pub use background::BackgroundLoop;
|
|
pub use coordinator::LoopCoordinator;
|
|
pub use instant::InstantLoop;
|