From 3a57d5855a14fd8ea8fd8d0f77a5fd6ea5db4daa Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Thu, 26 Oct 2023 17:50:58 -0700 Subject: [PATCH] build(litellm_server/main.py): add logging for data going into litellm pypi --- litellm_server/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm_server/main.py b/litellm_server/main.py index 116e78dfaf..e74a91f782 100644 --- a/litellm_server/main.py +++ b/litellm_server/main.py @@ -98,6 +98,7 @@ async def chat_completion(request: Request): if len(api_key.strip()) > 0: api_key = api_key data["api_key"] = api_key + print(f"data going into litellm: {data}") response = litellm.completion( **data )