mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
proxy - print embedding request when recieved
This commit is contained in:
parent
55dfb3b181
commit
e9537c6560
1 changed files with 5 additions and 0 deletions
|
@ -3481,6 +3481,11 @@ async def embeddings(
|
|||
body = await request.body()
|
||||
data = orjson.loads(body)
|
||||
|
||||
verbose_proxy_logger.debug(
|
||||
"Request received by LiteLLM:\n%s",
|
||||
json.dumps(data, indent=4),
|
||||
)
|
||||
|
||||
# Include original request and headers in the data
|
||||
data = await add_litellm_data_to_request(
|
||||
data=data,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue