fix(proxy_cli): prints the location of the config file

This commit is contained in:
Krrish Dholakia 2023-10-11 21:19:44 -07:00
parent 4b0f8825f3
commit 098a86f678
5 changed files with 11 additions and 5 deletions

View file

@ -353,7 +353,7 @@ async def completion(request: Request):
@router.post("/chat/completions")
async def chat_completion(request: Request):
data = await request.json()
print_verbose(f"data passed in: {data}")
print(f"data passed in: {data}")
response = litellm_completion(data, type="chat_completion")
return response