mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-21 00:21:49 +00:00
Python's aiohttp transport reads HTTP(S)_PROXY on every request unless disable_aiohttp_trust_env is set, so the Rust clients now do the same instead of requiring aiohttp_trust_env. Transport error messages include reqwest's source chain, so a rejected certificate or refused connection is no longer reported as just 'error sending request'
14 lines
257 B
JSON
14 lines
257 B
JSON
{
|
|
"http_settings": [
|
|
"ssl_verify",
|
|
"ssl_certificate",
|
|
"ssl_security_level",
|
|
"ssl_ecdh_curve",
|
|
"force_ipv4",
|
|
"http2",
|
|
"aiohttp_trust_env",
|
|
"disable_aiohttp_trust_env",
|
|
"disable_aiohttp_transport",
|
|
"user_agent"
|
|
]
|
|
}
|