Merge branch 'main' into litellm_organization_table

This commit is contained in:
Krish Dholakia 2024-03-02 16:09:28 -08:00 committed by GitHub
commit eaccbf26b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 146 additions and 75 deletions

View file

@ -11,6 +11,7 @@ generator client {
model LiteLLM_BudgetTable {
budget_id String @id @default(uuid())
max_budget Float?
soft_budget Float?
max_parallel_requests Int?
tpm_limit BigInt?
rpm_limit BigInt?
@ -107,6 +108,7 @@ model LiteLLM_VerificationToken {
allowed_cache_controls String[] @default([])
model_spend Json @default("{}")
model_max_budget Json @default("{}")
budget_id String?
}
// store proxy config.yaml
@ -127,6 +129,7 @@ model LiteLLM_SpendLogs {
startTime DateTime // Assuming start_time is a DateTime field
endTime DateTime // Assuming end_time is a DateTime field
model String @default("")
api_base String @default("")
user String @default("")
metadata Json @default("{}")
cache_hit String @default("")