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
//! OpenAI Model Registry and API Types
//!
//! Split into sub-modules for maintainability:
//! - `registry_types`: Enums and structs (OpenAIModelFeature, OpenAIModelFamily, etc.)
//! - `static_models`: Hardcoded model catalog data
//! - `registry`: Model discovery, feature detection, and capability classification
//! - `api_types`: OpenAI API request/response serialization types

mod api_types;
mod registry;
mod registry_types;
mod static_models;

// Re-export everything at the same path as before
pub use api_types::*;
pub use registry::*;
pub use registry_types::*;