diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 59d638c68d..c92f75f0ef 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -1142,10 +1142,7 @@ class PrismaClient: ) _data: dict = {} if response is not None: - try: - _data = response.model_dump() - except Exception as e: - _data = response.dict() + _data = response.dict() return {"token": token, "data": _data} elif ( user_id is not None