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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Session management for OAuth authentication

mod memory_store;
mod model;
#[cfg(feature = "redis")]
mod redis_store;
mod store;

#[cfg(test)]
mod tests;

pub use memory_store::InMemorySessionStore;
pub use model::OAuthSession;
#[cfg(feature = "redis")]
pub use redis_store::RedisSessionStore;
pub use store::{SessionError, SessionStore};