From 2ca2ecacb5bcdacaa56ca0cc2773a74926ce671d Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 12 Mar 2025 17:39:07 -0700 Subject: [PATCH] fix responses_api --- litellm/proxy/response_api_endpoints/endpoints.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/litellm/proxy/response_api_endpoints/endpoints.py b/litellm/proxy/response_api_endpoints/endpoints.py index b3b5a8697b..bf96564fa0 100644 --- a/litellm/proxy/response_api_endpoints/endpoints.py +++ b/litellm/proxy/response_api_endpoints/endpoints.py @@ -19,11 +19,6 @@ router = APIRouter() dependencies=[Depends(user_api_key_auth)], tags=["responses"], ) -@backoff.on_exception( - backoff.expo, - Exception, # base exception to catch for the backoff - logger=verbose_proxy_logger, -) async def responses_api( request: Request, fastapi_response: Response,