build(litellm_server/main.py): add logging for data going into litellm pypi

This commit is contained in:
Krrish Dholakia 2023-10-26 17:50:58 -07:00
parent b826a31f0f
commit bdb46f60e8

View file

@ -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
)