mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
proxy - print embedding request when recieved
This commit is contained in:
parent
cbe0b471fc
commit
152ebe2e7f
1 changed files with 5 additions and 0 deletions
|
@ -3481,6 +3481,11 @@ async def embeddings(
|
||||||
body = await request.body()
|
body = await request.body()
|
||||||
data = orjson.loads(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
|
# Include original request and headers in the data
|
||||||
data = await add_litellm_data_to_request(
|
data = await add_litellm_data_to_request(
|
||||||
data=data,
|
data=data,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue