litellm-rs 0.4.16

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
13
14
15
16
17
//! Request/Response Transformation Engine
//!
//! Split into sub-modules for maintainability:
//! - `types`: Type definitions, traits, and pipeline structures
//! - `engine`: DefaultTransformEngine and concrete Transform implementations

mod engine;
mod types;

// Re-export everything at the same path as before
pub use engine::*;
pub use types::*;

// Include tests that span both modules
#[cfg(test)]
#[path = "tests_module.rs"]
mod tests_include;