From dc10cebde78331d9a0acf596022f62baf6a3ca3e Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 3 Jan 2025 15:15:38 -0800 Subject: [PATCH] fix _make_common_async_call --- litellm/llms/custom_httpx/aiohttp_handler.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/litellm/llms/custom_httpx/aiohttp_handler.py b/litellm/llms/custom_httpx/aiohttp_handler.py index f87355097d..d579391518 100644 --- a/litellm/llms/custom_httpx/aiohttp_handler.py +++ b/litellm/llms/custom_httpx/aiohttp_handler.py @@ -49,12 +49,6 @@ class BaseLLMAIOHTTPHandler: ) response: Optional[aiohttp.ClientResponse] = None - timeout_obj = aiohttp.ClientTimeout( - total=( - float(timeout) if isinstance(timeout, (int, float)) else DEFAULT_TIMEOUT - ) - ) - if self.client_session is None: self.client_session = aiohttp.ClientSession()