BerriAI/litellm · error · BadRequestError
AzureException - {message}
Error message
AzureException - {message} What it means
Error "AzureException - {message}" thrown in BerriAI/litellm.
Source
Thrown at litellm/litellm_core_utils/exception_mapping_utils.py:1979
)
elif "The api_key client option must be set either by passing api_key to the client or by setting" in error_str:
raise AuthenticationError(
message=f"{exception_provider} AuthenticationError - {message}",
llm_provider=custom_llm_provider,
model=model,
litellm_debug_info=extra_information,
response=getattr(original_exception, "response", None),
)
elif "Connection error" in error_str:
raise APIConnectionError(
message=f"{exception_provider} APIConnectionError - {message}",
llm_provider=custom_llm_provider,
model=model,
litellm_debug_info=extra_information,
)
elif hasattr(original_exception, "status_code"):
if original_exception.status_code == 400:
raise BadRequestError(
message=f"AzureException - {message}",
llm_provider="azure",
model=model,
litellm_debug_info=extra_information,
response=getattr(original_exception, "response", None),
body=getattr(original_exception, "body", None),
)
elif original_exception.status_code == 401:
raise AuthenticationError(
message=f"AzureException AuthenticationError - {message}",
llm_provider="azure",
model=model,
litellm_debug_info=extra_information,
response=getattr(original_exception, "response", None),
)
elif original_exception.status_code == 404:
raise NotFoundError(
message=f"AzureException NotFoundError - {message}",View on GitHub (pinned to 6c2dcb801b)
Solutions
- Inspect the Azure error message; check deployment, api_version, and credentials.
When it happens
Trigger: Thrown at litellm/litellm_core_utils/exception_mapping_utils.py:1979 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of BerriAI/litellm@6c2dcb801b (2026-08-15).
Data as JSON: /api/errors/ff3427921d6c10bf.
Report an issue: GitHub.