This commit is contained in:
tofarr 2025-04-24 00:59:43 -07:00 committed by GitHub
commit 3305542d64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,6 +19,7 @@ from litellm.llms.custom_httpx.http_handler import (
AsyncHTTPHandler,
HTTPHandler,
get_async_httpx_client,
_get_httpx_client
)
from litellm.types.llms.anthropic import (
ContentBlockDelta,
@ -414,9 +415,7 @@ class AnthropicChatCompletion(BaseLLM):
else:
if client is None or not isinstance(client, HTTPHandler):
client = HTTPHandler(timeout=timeout) # type: ignore
else:
client = client
client = _get_httpx_client()
try:
response = client.post(