litellm-rs 0.6.0

A high-performance AI Gateway written in Rust, providing OpenAI-compatible APIs with intelligent routing, load balancing, and enterprise features
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Audio endpoints (transcription, translation, speech)

mod budgeting;
mod speech;
mod transcriptions;
mod translations;
mod upload;

// Re-export the public functions
pub use speech::audio_speech;
pub use transcriptions::audio_transcriptions;
pub use translations::audio_translations;