feat: add disable_default_user_agent flag

Add litellm.disable_default_user_agent global flag to control whether
the automatic User-Agent header is injected into HTTP requests.
This commit is contained in:
jayy-77 2026-01-28 00:49:52 +05:30
parent 45954155d7
commit fe184936ff

View file

@ -254,6 +254,7 @@ disable_streaming_logging: bool = False
disable_token_counter: bool = False
disable_add_transform_inline_image_block: bool = False
disable_add_user_agent_to_request_tags: bool = False
disable_default_user_agent: bool = False # Option to disable automatic User-Agent header injection
extra_spend_tag_headers: Optional[List[str]] = None
in_memory_llm_clients_cache: "LLMClientCache"
safe_memory_mode: bool = False