meme 0.7.0

Long term memory for AI agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Embedding model abstraction — unified interface for API and local ONNX providers.

mod api;
mod embedder;
#[cfg(feature = "onnx")]
mod onnx;

pub(crate) use api::ApiEmbedding;
pub(crate) use embedder::Embedder;
#[cfg(feature = "onnx")]
pub(crate) use onnx::OnnxEmbedding;