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
/// Application name, used as the default directory name for memory stores,
/// cache directories, and ephemeral index prefixes.
pub const APP_NAME: &str = "mnemoria";

/// Default model2vec model ID used when none is specified.
pub const DEFAULT_MODEL_ID: &str = "minishlab/potion-base-32M";

/// Filename for the manifest JSON file within a memory store directory.
pub(crate) const MANIFEST_FILENAME: &str = "manifest.json";

/// Filename for the append-only binary log within a memory store directory.
pub(crate) const LOG_FILENAME: &str = "log.bin";