do-memory-core 0.1.31

Core episodic learning system for AI agents with pattern extraction, reward scoring, and dual storage backend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Real embedding model using ONNX runtime
//!
//! This module provides the actual ONNX-based embedding model implementation
//! that runs locally when the 'local-embeddings' feature is enabled.

#[cfg(feature = "local-embeddings")]
mod download;
#[cfg(feature = "local-embeddings")]
mod model;
#[cfg(feature = "local-embeddings")]
mod tests;

#[cfg(feature = "local-embeddings")]
pub use model::RealEmbeddingModel;