Skip to main content

do_memory_core/learning/
mod.rs

1//! # Learning Module
2//!
3//! Asynchronous learning components for pattern extraction and analysis.
4//!
5//! This module provides non-blocking pattern extraction through a queue-based
6//! worker pool system, allowing episode completion to return quickly while
7//! pattern extraction happens in the background.
8
9pub mod queue;
10
11mod config;
12mod stats;
13
14pub use config::QueueConfig;
15pub use queue::PatternExtractionQueue;
16pub use stats::QueueStats;