litellm-rs 0.1.1

A high-performance AI Gateway written in Rust, providing OpenAI-compatible APIs with intelligent routing, load balancing, and enterprise features
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// 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 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;