fix code quality check

This commit is contained in:
Ishaan Jaff 2025-04-21 19:42:57 -07:00
parent c17e5351be
commit a75ff7cc54

View file

@ -1,15 +1,5 @@
import base64
from typing import (
TYPE_CHECKING,
Any,
Coroutine,
Dict,
Optional,
Tuple,
Union,
cast,
get_type_hints,
)
from typing import Any, Dict, Optional, Tuple, Union, cast, get_type_hints
import litellm
from litellm._logging import verbose_logger
@ -21,11 +11,6 @@ from litellm.types.llms.openai import (
)
from litellm.types.utils import SpecialEnums, Usage
if TYPE_CHECKING:
from litellm.responses.streaming_iterator import BaseResponsesAPIStreamingIterator
else:
BaseResponsesAPIStreamingIterator = Any
class ResponsesAPIRequestUtils:
"""Helper utils for constructing ResponseAPI requests"""