Skip to content

Commit 904e56b

Browse files
committed
absolute imports
1 parent 65df355 commit 904e56b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

litellm/litellm_core_utils/litellm_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
cast,
2727
)
2828

29-
from .._uuid import uuid
29+
from litellm._uuid import uuid
3030
from httpx import Response
3131
from pydantic import BaseModel
3232

litellm/llms/bedrock/common_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ def generate_unique_job_name(self, model: str, prefix: str = "litellm") -> str:
774774
Returns:
775775
Unique job name (≤ 63 characters for Bedrock compatibility)
776776
"""
777-
from ..._uuid import uuid
777+
from litellm._uuid import uuid
778778
unique_id = str(uuid.uuid4())[:8]
779779
# Format: {prefix}-batch-{model}-{uuid}
780780
# Example: litellm-batch-claude-266c398e

litellm/proxy/common_request_processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Union,
1515
)
1616

17-
from .._uuid import uuid
17+
from litellm._uuid import uuid
1818
import httpx
1919
import orjson
2020
from fastapi import HTTPException, Request, status

litellm/types/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Union,
1414
)
1515

16-
from .._uuid import uuid
16+
from litellm._uuid import uuid
1717
from aiohttp import FormData
1818
from openai._models import BaseModel as OpenAIObject
1919
from openai.types.audio.transcription_create_params import FileTypes # type: ignore

litellm/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
import aiohttp
4242
import dotenv
43-
from ._uuid import uuid
43+
from litellm._uuid import uuid
4444
import httpx
4545
import openai
4646
import tiktoken

0 commit comments

Comments
 (0)