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
//! Compatibility exports for the shared core pricing database.
//!
//! Pricing data ownership now lives in `core::pricing`; this module keeps the
//! older provider-base import path stable while callers migrate.

pub use crate::core::pricing::{
    ModelPricing, PricingDatabase, Usage, calculate_cost, get_pricing_db,
};