From c7f979e0fe3c11f5595dca0c18ad7395b728bc3c Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 30 Apr 2024 12:31:19 -0700 Subject: [PATCH] fix schema error logs --- schema.prisma | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/schema.prisma b/schema.prisma index cf979fe86..7f81ed16a 100644 --- a/schema.prisma +++ b/schema.prisma @@ -189,8 +189,9 @@ model LiteLLM_ErrorLogs { model_name String @default("") // public model_name / model_group model_id String @default("") // ID of model in ProxyModelTable request_kwargs Json @default("{}") - exceptionType String @default("") - exceptionString String @default("") + exception_type String @default("") + exception_string String @default("") + status_code String @default("") } // Beta - allow team members to request access to a model