operonx 0.7.1

High-performance Rust execution backend for Operon workflows
1
2
3
4
5
6
7
8
9
10
11
//! ONNX inference backend.
//!
//! Mirrors Python `operonx/providers/onnx/`. Gated behind the `onnx` feature.

pub mod backend;
pub mod config;
pub mod factory;

pub use backend::{OnnxBackend, OnnxInferenceBackend};
pub use config::{OnnxInferenceConfig, OnnxInputType};
pub use factory::create_onnx_backend;