null response returned when type=audio/wav
is not supplied on multipart/form-data'
upload.
#8
Open
opened 2 years ago by androiddrew
·
0 comments
Loading…
Reference in New Issue
There is no content yet.
Delete Branch '%!s(<nil>)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
The OpenAI Whisper Docs Suggests that
should be accepted. What I found was that the Content-Type of the uploaded file was 'application/octet-stream' resulting in an implicit
None
return value for the/audio/transcription
endpoint. Like https://github.com/ahmetoner/whisper-asr-webservice we will probably need to add ffmpeg for resampling and support of additional file types.We should also add support for
--form response_format=text
to return text responses instead of the default json.