mnemara 0.1.0

Local-first, explainable AI memory engine for embedded and service-based systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![forbid(unsafe_code)]

pub use mnemara_core::*;

#[cfg(feature = "file")]
pub use mnemara_store_file::{FileMemoryStore, FileStoreConfig};

#[cfg(feature = "sled")]
pub use mnemara_store_sled::{SledMemoryStore, SledStoreConfig};

#[cfg(feature = "protocol")]
pub use mnemara_protocol::*;

#[cfg(feature = "server")]
pub use mnemara_server::*;

pub const CRATE_NAME: &str = "mnemara";