feat - check team member spend, budget

This commit is contained in:
Ishaan Jaff 2024-05-22 18:36:39 -07:00
parent c2d25b9a14
commit 7a8d78e6c9
3 changed files with 61 additions and 6 deletions

View file

@ -1097,9 +1097,11 @@ class PrismaClient:
t.models AS team_models,
t.blocked AS team_blocked,
t.team_alias AS team_alias,
tm.spend AS team_member_spend,
m.aliases as team_model_aliases
FROM "LiteLLM_VerificationToken" AS v
LEFT JOIN "LiteLLM_TeamTable" AS t ON v.team_id = t.team_id
LEFT JOIN "LiteLLM_TeamMembership" AS tm ON v.team_id = tm.team_id AND tm.user_id = v.user_id
LEFT JOIN "LiteLLM_ModelTable" m ON t.model_id = m.id
WHERE v.token = '{token}'
"""