operonx 0.7.1

High-performance Rust execution backend for Operon workflows
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Provider integrations — LLM, embedding, reranker, ONNX, Triton, auth.
//!
//! Mirrors Python `operonx/providers/`.

pub mod auth;
pub mod embeddings;
pub mod http;
pub mod llms;
pub mod onnx;
pub mod ops;
pub mod registry;
pub mod rerankers;
pub mod utils;