operonx 0.6.2

High-performance Rust execution backend for Operon workflows
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Embedding providers.
//!
//! Mirrors Python `operonx/providers/embeddings/`.

pub mod base;
pub mod config;
pub mod factory;
pub mod huggingface;
pub mod onnx;
pub mod tei;
pub mod vllm;

pub use base::{BaseEmbedder, EmbedOpts, EmbedResult};
pub use config::{EmbeddingConfig, EmbeddingType};
pub use factory::create_embedder;