You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@aniketmaurya for example when using with amazon sagemaker async endpoint, an input provided as a location in an s3 bucket. AWS has some internal processors that read the file and sends it in a request. There is not much control on how the request is constructed. It basically just reads the file as bytes and sends in a body. It does not construct "multipart/form-data" request.
🚀 Feature
Add support to additional
content-type
requests such asapplication/octet-stream
Motivation
It will make the Litserv more flexible. It will also allow streaming binary data.
Pitch
Basically add another option to the lines here
LitServe/src/litserve/server.py
Line 351 in c8cf6b2
that returns
request.body()
to support the following request
Alternatives
Additional context
The text was updated successfully, but these errors were encountered: