We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2827c52 commit fb1b9a2Copy full SHA for fb1b9a2
eval_protocol/proxy/proxy_core/litellm.py
@@ -108,6 +108,10 @@ async def handle_chat_completion(
108
# Forward to LiteLLM
109
litellm_url = f"{config.litellm_url}/chat/completions"
110
111
+ print("litellm_url: ", litellm_url)
112
+ print("data: ", data)
113
+ print("headers: ", headers)
114
+
115
response = await client.post(
116
litellm_url,
117
json=data, # httpx will serialize and set correct Content-Length
0 commit comments