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
//! Router tests module
//!
//! Contains comprehensive tests for the unified router system.

// Unified router tests
mod cooldown_tests;
mod execution_tests;
mod fallback_tests;
mod router_tests;
mod strategy_tests;

// Concurrency and edge case tests (issue #216)
mod concurrency_edge_case_tests;

// Legacy module tests (moved from embedded tests)
mod deployment_tests;
mod strategy_impl_tests;

// Selection logic edge case tests (issue #343)
mod selection_tests;