We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22a0c40 commit f1ce7bbCopy full SHA for f1ce7bb
litellm/llms/custom_httpx/http_handler.py
@@ -107,7 +107,7 @@ def __init__(
107
http_proxy = os.getenv("HTTP_PROXY", None)
108
https_proxy = os.getenv("HTTPS_PROXY", None)
109
no_proxy = os.getenv("NO_PROXY", None)
110
- ssl_verify = os.getenv("SSL_VERIFY", litellm.ssl_verify)
+ ssl_verify = bool(os.getenv("SSL_VERIFY", litellm.ssl_verify))
111
112
sync_proxy_mounts = None
113
if http_proxy is not None and https_proxy is not None:
0 commit comments