forked from phoenix/litellm-mirror
build(schema.prisma): update prisma schema with allowed_cache_controls param
This commit is contained in:
parent
114c2f82d4
commit
de223d0059
2 changed files with 4 additions and 0 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue