engram-core 0.19.0

AI Memory Infrastructure - Persistent memory for AI agents with semantic search
Documentation
1
2
3
4
5
6
7
8
9
//! Real-time updates via WebSocket (RML-881)
//!
//! Provides push notifications for memory changes to connected clients.

pub(crate) mod events;
mod server;

pub use events::{EventType, RealtimeEvent, SubscriptionFilter};
pub use server::{RealtimeManager, RealtimeServer};