fix - use import fastuuid as uuid (#14016)

This commit is contained in:
Ishaan Jaff 2025-08-28 17:57:46 -07:00 committed by GitHub
parent f3338bef9f
commit 3fe05b300a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,6 @@
import asyncio
import json
import traceback
import uuid
from datetime import datetime
from typing import (
TYPE_CHECKING,
@ -14,6 +13,7 @@ from typing import (
Union,
)
import fastuuid as uuid
import httpx
import orjson
from fastapi import HTTPException, Request, status

View file

@ -32,7 +32,6 @@ import textwrap
import threading
import time
import traceback
import uuid
from dataclasses import dataclass, field
from functools import lru_cache, wraps
from importlib import resources
@ -41,6 +40,7 @@ from os.path import abspath, dirname, join
import aiohttp
import dotenv
import fastuuid as uuid
import httpx
import openai
import tiktoken