Skip to main content

seekr_code/embedder/
mod.rs

1//! Embedding engine module.
2//!
3//! Provides trait-based embedding abstraction with ONNX Runtime backend.
4//! Supports batch embedding computation for throughput optimization.
5
6pub mod batch;
7pub mod onnx;
8pub mod traits;