mnemoria 0.3.5

Persistent, git-friendly memory storage for AI agents with hybrid semantic + full-text search
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Low-level storage primitives for the append-only binary log.
//!
//! This module contains the binary log reader/writer, manifest management,
//! and advisory file locking. These are internal implementation details;
//! most users should interact through [`Mnemoria`](crate::Mnemoria) instead.

pub mod file_lock;
pub mod log_reader;
pub mod log_writer;
pub mod manifest;

pub use file_lock::FileLock;
pub use log_writer::LogWriter;
pub use manifest::Manifest;