diff --git a/litellm_server/main.py b/litellm_server/main.py index 116e78dfa..e74a91f78 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 )