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
/// API key entity module
pub mod api_key;
/// Batch entity module
pub mod batch;
/// Budget limit snapshot entity module
pub mod budget_limit_snapshot;
/// Password reset token entity module
pub mod password_reset_token;
/// Pricing entity module
pub mod pricing;
/// Pricing history entity module
pub mod pricing_history;
/// User entity module
pub mod user;
/// User session entity module
pub mod user_session;

pub use api_key::Entity as ApiKey;
pub use batch::Entity as Batch;
pub use budget_limit_snapshot::Entity as BudgetLimitSnapshot;
pub use password_reset_token::Entity as PasswordResetToken;
pub use pricing::Entity as ModelPricing;
pub use pricing_history::Entity as PricingHistory;
pub use user::Entity as User;
// UserSession is available but not currently used
#[allow(unused_imports)]
pub use user_session::Entity as UserSession;