Skip to content

Commit 37e57a0

Browse files
authored
fix(azure): remove trailing semicolon in Content-Type header for image generation (#13584)
1 parent 5e45fcd commit 37e57a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

litellm/images/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def image_generation( # noqa: PLR0915
311311
) or get_secret_str("AZURE_AD_TOKEN")
312312

313313
default_headers = {
314-
"Content-Type": "application/json;",
314+
"Content-Type": "application/json",
315315
"api-key": api_key,
316316
}
317317
for k, v in default_headers.items():

0 commit comments

Comments
 (0)