Skip to main content

SSL Security Settings

If you're in an environment using an older TTS bundle, with an older encryption, follow this guide.

LiteLLM uses HTTPX for network requests, unless otherwise specified.

  1. Disable SSL verification
import litellm
litellm.ssl_verify = False
  1. Lower security settings
import litellm
litellm.ssl_security_level = 1
litellm.ssl_certificate = "/path/to/certificate.pem"