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
18
/// API key entity module
pub mod api_key;
/// Batch entity module
pub mod batch;
/// Password reset token entity module
pub mod password_reset_token;
/// 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 password_reset_token::Entity as PasswordResetToken;
pub use user::Entity as User;
// UserSession is available but not currently used
#[allow(unused_imports)]
pub use user_session::Entity as UserSession;