build(schema.prisma): update prisma schema with allowed_cache_controls param

This commit is contained in:
Krrish Dholakia 2024-01-30 21:17:01 -08:00
parent 114c2f82d4
commit de223d0059
2 changed files with 4 additions and 0 deletions

View file

@ -20,6 +20,7 @@ model LiteLLM_UserTable {
rpm_limit BigInt? rpm_limit BigInt?
budget_duration String? budget_duration String?
budget_reset_at DateTime? budget_reset_at DateTime?
allowed_cache_controls String[] @default([])
} }
// Generate Tokens for Proxy // Generate Tokens for Proxy
@ -41,6 +42,7 @@ model LiteLLM_VerificationToken {
max_budget Float? max_budget Float?
budget_duration String? budget_duration String?
budget_reset_at DateTime? budget_reset_at DateTime?
allowed_cache_controls String[] @default([])
} }
// store proxy config.yaml // store proxy config.yaml

View file

@ -20,6 +20,7 @@ model LiteLLM_UserTable {
rpm_limit BigInt? rpm_limit BigInt?
budget_duration String? budget_duration String?
budget_reset_at DateTime? budget_reset_at DateTime?
allowed_cache_controls String[] @default([])
} }
// Generate Tokens for Proxy // Generate Tokens for Proxy
@ -41,6 +42,7 @@ model LiteLLM_VerificationToken {
max_budget Float? max_budget Float?
budget_duration String? budget_duration String?
budget_reset_at DateTime? budget_reset_at DateTime?
allowed_cache_controls String[] @default([])
} }
// store proxy config.yaml // store proxy config.yaml