Merge branch 'main' into fix/reset-end-user-budget-by-duration

This commit is contained in:
Laurien 2025-02-12 08:24:06 +01:00 committed by GitHub
commit 9f12cba8bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
231 changed files with 6692 additions and 1224 deletions

View file

@ -1417,7 +1417,8 @@ class PrismaClient:
if key_val is None:
key_val = {"user_id": user_id}
response = await self.db.litellm_usertable.find_unique( # type: ignore
where=key_val # type: ignore
where=key_val, # type: ignore
include={"organization_memberships": True},
)
elif query_type == "find_all" and key_val is not None:
response = await self.db.litellm_usertable.find_many(