ruv-neural-memory 0.1.0

rUv Neural — Persistent neural state memory with vector search and longitudinal tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! rUv Neural Memory — Persistent neural state memory with vector search
//! and longitudinal tracking.
//!
//! This crate provides in-memory and persistent storage for neural embeddings,
//! supporting brute-force and HNSW-based nearest neighbor search, session-based
//! memory management, and longitudinal drift detection.

pub mod hnsw;
pub mod longitudinal;
pub mod persistence;
pub mod session;
pub mod store;

pub use hnsw::HnswIndex;
pub use longitudinal::{LongitudinalTracker, TrendDirection};
pub use persistence::{load_rvf, load_store, save_rvf, save_store};
pub use session::{SessionMemory, SessionMetadata};
pub use store::NeuralMemoryStore;