From 4691d4df917d0752f464fc7dd31522bc3a886cff Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 25 Dec 2024 21:11:08 -0800 Subject: [PATCH] fix if "/openai/" in route: --- litellm/proxy/auth/route_checks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/proxy/auth/route_checks.py b/litellm/proxy/auth/route_checks.py index 0524a1d8f72..ae3f7fff9f3 100644 --- a/litellm/proxy/auth/route_checks.py +++ b/litellm/proxy/auth/route_checks.py @@ -192,6 +192,8 @@ class RouteChecks: return True if "/azure/" in route: return True + if "/openai/" in route: + return True return False @staticmethod