From 6cb059cce8d9a3f09150cbb592ea604abedd5015 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 7 May 2024 12:48:53 -0700 Subject: [PATCH] fix - use cost-based-routing --- litellm/router.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/router.py b/litellm/router.py index 25ebf818ef..99e2435ac9 100644 --- a/litellm/router.py +++ b/litellm/router.py @@ -99,6 +99,7 @@ class Router: "least-busy", "usage-based-routing", "latency-based-routing", + "cost-based-routing", ] = "simple-shuffle", routing_strategy_args: dict = {}, # just for latency-based routing semaphore: Optional[asyncio.Semaphore] = None,