Skip to main content

pulsehive_runtime/intelligence/
mod.rs

1//! Intelligence layer — automatic relationship inference and insight synthesis.
2//!
3//! When experiences are recorded, the intelligence layer:
4//! 1. **RelationshipDetector** finds semantically similar experiences and creates
5//!    typed relations (Supports, Contradicts, Supersedes, Implies, etc.)
6//! 2. **InsightSynthesizer** detects clusters of related experiences and uses an
7//!    LLM to synthesize consolidated insights
8
9pub mod context;
10pub mod insight;
11pub mod relationship;