memoryhub 0.0.1

Centralized memory service for AI agents
Documentation
//! Memory actor sub-system for MemoryHub.
//!
//! The memory manager owns Storage, Indexer, and Synthesizer child actors.
//! See the actor handler modules in this directory.

pub mod error;

mod chunking;
mod path;

mod manager;
pub use manager::MemoryManager;

mod config;
pub use config::MemoryConfig;

pub mod message;

mod file_op;
pub use file_op::FileOp;

mod search_op;
pub use search_op::SearchOp;

mod storage;
pub use storage::Storage;

mod indexer;
pub use indexer::Indexer;

mod synthesizer;
pub use synthesizer::Synthesizer;