mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-05 08:07:05 +00:00
feat - include litellm_budget table when getting end_user
This commit is contained in:
parent
9609df16d3
commit
eac7e70dca
1 changed files with 2 additions and 1 deletions
|
|
@ -219,7 +219,8 @@ async def get_end_user_object(
|
|||
# else, check db
|
||||
try:
|
||||
response = await prisma_client.db.litellm_endusertable.find_unique(
|
||||
where={"user_id": end_user_id}
|
||||
where={"user_id": end_user_id},
|
||||
include={"litellm_budget_table": True},
|
||||
)
|
||||
|
||||
if response is None:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue