Whisper endpoint not working
Hi!
I tried the code from the readme. I filled in my HF_TOKEN and ENDPOINT_URL. I tried both /static-proxy?url=https%3A%2F%2Fapi-inference.huggingface.co%2Fmodels%2Fopenai%2Fwhisper-large-v3-turbo%3C%2Fa%3E and /static-proxy?url=https%3A%2F%2Fapi-inference.huggingface.co%2Fmodels%2Fopenai%2Fwhisper-large-v3%3C%2Fa%3E.%3C%2Fp%3E
I receive the following error: I disabled the certificate verification by adding I also tried on a text model inference endpoint and it works ok.requests.exceptions.SSLError: HTTPSConnectionPool(host='api-inference.huggingface.co', port=443): Max retries exceeded with url: /models/openai/whisper-large-v3-turbo (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:2426)')))
verify=False
, but I still get that error.
The issue seems to be the file is too large. If I try with /static-proxy?url=https%3A%2F%2Fcdn-media.huggingface.co%2Fspeech_samples%2Fsample1.flac%3C%2Fcode%3E%2C all works ok (and the file path is the only thing I change in my script). But this doesn't explain the error message. What's the file limit size?