Revert "#14404 BugFix - Add support for Azure AD token-based authorization in image generation request headers definition for Azure"

This reverts commit a2793bdb57.
This commit is contained in:
Shagun Bansal 2025-09-24 16:23:20 +05:30
parent 0a30cbb822
commit 250e13ea92

View file

@ -314,15 +314,6 @@ def image_generation( # noqa: PLR0915
"Content-Type": "application/json",
"api-key": api_key,
}
if api_key is None and azure_ad_token_provider is not None:
azure_ad_token = azure_ad_token_provider()
if azure_ad_token:
default_headers.pop(
"api-key", None
)
default_headers["Authorization"] = f"Bearer {azure_ad_token}"
for k, v in default_headers.items():
if k not in headers:
headers[k] = v