We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a9ebe8 commit 0a5fe10Copy full SHA for 0a5fe10
litellm/llms/custom_httpx/http_handler.py
@@ -915,7 +915,7 @@ def _create_sync_transport(self) -> Optional[HTTPTransport]:
915
if litellm.force_ipv4:
916
return HTTPTransport(local_address="0.0.0.0")
917
else:
918
- return None
+ return getattr(litellm, 'sync_transport', None)
919
920
921
def get_async_httpx_client(
0 commit comments