forked from phoenix/litellm-mirror
build(litellm_server/main.py): add logging for data going into litellm pypi
This commit is contained in:
parent
b826a31f0f
commit
bdb46f60e8
1 changed files with 1 additions and 0 deletions
|
@ -98,6 +98,7 @@ async def chat_completion(request: Request):
|
||||||
if len(api_key.strip()) > 0:
|
if len(api_key.strip()) > 0:
|
||||||
api_key = api_key
|
api_key = api_key
|
||||||
data["api_key"] = api_key
|
data["api_key"] = api_key
|
||||||
|
print(f"data going into litellm: {data}")
|
||||||
response = litellm.completion(
|
response = litellm.completion(
|
||||||
**data
|
**data
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue