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
// Module declarations
mod analytics_ops;
#[cfg(test)]
mod api_key_corruption_tests;
mod api_key_ops;
#[cfg(all(test, any(feature = "postgres", feature = "sqlite")))]
mod api_key_owner_migration_tests;
mod batch_ops;
mod budget_limit_ops;
mod connection;
mod team_repository;
#[cfg(test)]
mod team_repository_tests;
mod token_ops;
mod types;
mod user_management_ops;
mod user_ops;
#[cfg(test)]
mod user_repository_tests;
#[cfg(test)]
mod user_state_corruption_tests;
mod virtual_key_ops;

// Re-export public types
pub use team_repository::SeaOrmTeamRepository;
pub use types::{DatabaseBackendType, DatabaseStats, SeaOrmDatabase};