mnemefusion-core 0.1.4

Unified memory engine for AI applications - Core library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Embedding model integration for automatic text vectorization.
//!
//! When the `embedding-onnx` feature is enabled, provides `EmbeddingEngine`
//! which wraps `fastembed` (ONNX Runtime) to compute embeddings internally.
//! This removes the need for callers to supply embedding vectors explicitly.

#[cfg(feature = "embedding-onnx")]
pub mod engine;

#[cfg(feature = "embedding-onnx")]
pub use engine::EmbeddingEngine;