What's Changed
- [Feat] Litellm Proxy improve exception mapping by @ishaan-jaff in #1449
All Exceptions from the LiteLLM Proxy return the following format - this is exactly the OpenAI API Exception format
{
"error": {
"message": "'[{role: user, content: hi}]' is not of type 'array' - 'messages'",
"type": "invalid_request_error",
"param": null,
"code": null
}
}
New Contributors
Full Changelog: v1.17.6...v1.17.7