oxirag 0.1.1

A four-layer RAG engine with SMT-based logic verification and knowledge graph support
Documentation
1
2
3
4
5
6
7
8
9
10
//! Embedding providers for the Echo layer.

mod cache;
mod candle;

pub use self::cache::{CacheStats, CachedEmbeddingProvider, EmbeddingCacheConfig};
pub use self::candle::{CandleDevice, CandleEmbeddingConfig, MockEmbeddingProvider};

#[cfg(feature = "speculator")]
pub use self::candle::CandleEmbeddingProvider;