mentedb-embedding 0.1.0

Embedding model integration for MenteDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Embedding model integration for MenteDB.
//!
//! Provides a trait-based architecture for embedding providers with built-in
//! caching and a hash-based provider for testing.

pub mod cache;
pub mod hash_provider;
pub mod http_provider;
pub mod manager;
pub mod provider;

pub use cache::{CacheStats, CachedEmbedding, EmbeddingCache};
pub use hash_provider::HashEmbeddingProvider;
pub use http_provider::{HttpEmbeddingConfig, HttpEmbeddingProvider};
pub use manager::{EmbeddingManager, EmbeddingStats};
pub use provider::{AsyncEmbeddingProvider, EmbeddingProvider};