voirs-sdk 0.1.0-rc.1

Unified SDK and public API for VoiRS speech synthesis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Model runtime module for unified ONNX and model loading.
//!
//! Provides a high-level wrapper around OxiONNX sessions with configurable
//! optimization levels, profiling, GPU support, and format auto-detection.

#[cfg(feature = "onnx")]
pub mod onnx;

pub mod loader;

#[cfg(feature = "onnx")]
pub use onnx::{OnnxSession, OnnxSessionConfig, ProfilingSummary};

pub use loader::{DetectedFormat, ModelFormatDetector};