From 8210fd7e1d0cd3435ab3a41bcb42b8005548d330 Mon Sep 17 00:00:00 2001 From: Sameer Kankute Date: Fri, 27 Mar 2026 15:32:57 +0530 Subject: [PATCH] fix: revert accidental _litellm_uuid import back to _uuid The isort hook picked up a stale rename from the working directory. Both router.py and proxy_server.py need litellm._uuid, not _litellm_uuid. Co-Authored-By: Claude Opus 4.6 --- litellm/proxy/proxy_server.py | 2 +- litellm/router.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index b87fc9d127b..28e613ef487 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -37,7 +37,7 @@ import websockets import websockets.exceptions from pydantic import BaseModel, Json -from litellm._litellm_uuid import uuid +from litellm._uuid import uuid from litellm.constants import ( AIOHTTP_CONNECTOR_LIMIT, AIOHTTP_CONNECTOR_LIMIT_PER_HOST, diff --git a/litellm/router.py b/litellm/router.py index 8d0e3334cb2..6cc6bad9def 100644 --- a/litellm/router.py +++ b/litellm/router.py @@ -46,8 +46,8 @@ import litellm import litellm.litellm_core_utils import litellm.litellm_core_utils.exception_mapping_utils from litellm import get_secret_str -from litellm._litellm_uuid import uuid from litellm._logging import verbose_router_logger +from litellm._uuid import uuid from litellm.caching.caching import ( DualCache, InMemoryCache,