From 22725bd44df06d97c35d0263fa773cb9eab069ce Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 30 Apr 2024 12:31:33 -0700 Subject: [PATCH] fix types for errorLog --- litellm/proxy/_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index 5ec19033a..9c13b1854 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -916,7 +916,7 @@ class LiteLLM_ErrorLogs(LiteLLMBase): request_id: Optional[str] = str(uuid.uuid4()) model_name: Optional[str] = "" model_id: Optional[str] = "" - request_kwargs: Optional[dict] = {} + request_kwargs: Optional[Json] = {} exception_type: Optional[str] = "" status_code: Optional[str] = "" exception_string: Optional[str] = ""