From de223d0059853cdc0cb85269805c89f177747378 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Tue, 30 Jan 2024 21:17:01 -0800 Subject: [PATCH] build(schema.prisma): update prisma schema with allowed_cache_controls param --- litellm/proxy/schema.prisma | 2 ++ schema.prisma | 2 ++ 2 files changed, 4 insertions(+) diff --git a/litellm/proxy/schema.prisma b/litellm/proxy/schema.prisma index 02e4114e5..da2857075 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -20,6 +20,7 @@ model LiteLLM_UserTable { rpm_limit BigInt? budget_duration String? budget_reset_at DateTime? + allowed_cache_controls String[] @default([]) } // Generate Tokens for Proxy @@ -41,6 +42,7 @@ model LiteLLM_VerificationToken { max_budget Float? budget_duration String? budget_reset_at DateTime? + allowed_cache_controls String[] @default([]) } // store proxy config.yaml diff --git a/schema.prisma b/schema.prisma index 02e4114e5..da2857075 100644 --- a/schema.prisma +++ b/schema.prisma @@ -20,6 +20,7 @@ model LiteLLM_UserTable { rpm_limit BigInt? budget_duration String? budget_reset_at DateTime? + allowed_cache_controls String[] @default([]) } // Generate Tokens for Proxy @@ -41,6 +42,7 @@ model LiteLLM_VerificationToken { max_budget Float? budget_duration String? budget_reset_at DateTime? + allowed_cache_controls String[] @default([]) } // store proxy config.yaml