oxios-kernel 1.2.0

Oxios kernel: supervisor, event bus, state store
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Embedding abstraction — re-exported from `oxios-memory`.
//!
//! The actual implementations live in `oxios-memory::memory::embedding`.
//! This module re-exports them for back-compat.

pub use oxios_memory::memory::embedding::{
    EmbeddingProvider, EmbeddingVector, TfIdfEmbeddingProvider,
};

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