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()