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 33a11c4 commit 666641bCopy full SHA for 666641b
litellm/proxy/pass_through_endpoints/llm_passthrough_endpoints.py
@@ -142,7 +142,7 @@ async def llm_passthrough_factory_proxy_route(
142
if "multipart/form-data" not in request.headers.get("content-type", ""):
143
_request_body = await request.json()
144
else:
145
- _request_body = dict(request._form)
+ _request_body = await get_form_data(request)
146
147
if _request_body.get("stream"):
148
is_streaming_request = True
0 commit comments