|
from typing import Any, Dict |
|
|
|
from pydantic import BaseModel, Field |
|
|
|
from litellm.exceptions import LITELLM_EXCEPTION_TYPES |
|
|
|
|
|
class ErrorResponse(BaseModel): |
|
detail: Dict[str, Any] = Field( |
|
..., |
|
example={ |
|
"error": { |
|
"message": "Error message", |
|
"type": "error_type", |
|
"param": "error_param", |
|
"code": "error_code", |
|
} |
|
}, |
|
) |
|
|
|
|
|
|
|
def get_status_code(exception): |
|
if hasattr(exception, "status_code"): |
|
return exception.status_code |
|
|
|
if exception.__name__ == "Timeout": |
|
return 408 |
|
if exception.__name__ == "APIConnectionError": |
|
return 503 |
|
return 500 |
|
|
|
|
|
|
|
ERROR_RESPONSES = { |
|
get_status_code(exception): { |
|
"model": ErrorResponse, |
|
"description": exception.__doc__ or exception.__name__, |
|
} |
|
for exception in LITELLM_EXCEPTION_TYPES |
|
} |
|
|
|
|
|
if 500 not in ERROR_RESPONSES: |
|
ERROR_RESPONSES[500] = { |
|
"model": ErrorResponse, |
|
"description": "Internal Server Error", |
|
} |
|
|