fix(http_handler.py): fix typing error

This commit is contained in:
Krrish Dholakia 2025-03-17 16:42:32 -07:00
parent 8e27b2026a
commit 057c774c14
2 changed files with 5 additions and 3 deletions

View file

@ -6,7 +6,6 @@ from typing import TYPE_CHECKING, Any, Callable, List, Mapping, Optional, Union
import httpx
from httpx import USE_CLIENT_DEFAULT, AsyncHTTPTransport, HTTPTransport
from httpx._types import VerifyTypes
import litellm
from litellm.litellm_core_utils.logging_utils import track_llm_api_timing

View file

@ -1,6 +1,6 @@
import ssl
from enum import Enum
import litellm
from typing import Union
class httpxSpecialProvider(str, Enum):
@ -19,3 +19,6 @@ class httpxSpecialProvider(str, Enum):
SecretManager = "secret_manager"
PassThroughEndpoint = "pass_through_endpoint"
PromptFactory = "prompt_factory"
VerifyTypes = Union[str, bool, ssl.SSLContext]