Skip to main content

oxios_kernel/
embedding.rs

1//! Embedding abstraction — re-exported from `oxios-memory`.
2//!
3//! The actual implementations live in `oxios-memory::memory::embedding`.
4//! This module re-exports them for back-compat.
5
6pub use oxios_memory::memory::embedding::{
7    EmbeddingProvider, EmbeddingVector, TfIdfEmbeddingProvider,
8};
9
10#[cfg(feature = "embedding-gguf")]
11pub mod gguf;