brainwires-cognition 0.8.0

Unified intelligence layer — knowledge graphs, adaptive prompting, RAG, spectral math, and code analysis for the Brainwires Agent Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Autodream memory consolidation — offline summarisation and fact extraction.
//!
//! The dream system runs periodically (via cron or on-demand) to compress older
//! conversation messages into summaries and durable facts, reducing token
//! pressure while preserving important knowledge.

pub mod consolidator;
pub mod fact_extractor;
pub mod metrics;
pub mod policy;
pub mod summarizer;
pub mod task;