memvid-core 2.0.139

Core library for Memvid v2, a crash-safe, deterministic, single-file AI memory.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Enrichment engine framework for extracting memory cards from frames.
//!
//! This module provides the trait and utilities for building enrichment engines
//! that process MV2 frames and extract structured memory cards.

pub mod engine;
pub mod rules;

pub use engine::{EnrichmentContext, EnrichmentEngine, EnrichmentResult};
pub use rules::RulesEngine;