From e67daf79be891448a278001b8d2637e1ed345af0 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 25 Jul 2024 18:22:35 -0700 Subject: [PATCH] router support setting pass_through_all_models --- litellm/types/router.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/litellm/types/router.py b/litellm/types/router.py index 78dfbc4c19..285732121c 100644 --- a/litellm/types/router.py +++ b/litellm/types/router.py @@ -540,3 +540,6 @@ class RouterGeneralSettings(BaseModel): async_only_mode: bool = Field( default=False ) # this will only initialize async clients. Good for memory utils + pass_through_all_models: bool = Field( + default=False + ) # if passed a model not llm_router model list, pass through the request to litellm.acompletion/embedding