Releases: ahmetoner/whisper-asr-webservice
Releases · ahmetoner/whisper-asr-webservice
v1.6.0
Changed
- Upgraded
- openai/whisper@v20240930
- fastapi to v0.115.0
- uvicorn to v0.31.0
- tqdm to v4.66.5
- python-multipart to v0.0.12
What's Changed
- Release 1.5.0 by @ahmetoner in #231
- Upgrade OpenAI Whisper to v20240930 (turbo) by @ahmetoner in #244
Full Changelog: v1.5.0...v1.6.0
v1.5.0
Changed
- Upgraded
- SYSTRAN/faster-whisper to v1.0.3
- fastapi to v0.111.0
- uvicorn to v0.30.1
- gunicorn to v22.0.0
- tqdm to v4.66.4
- llvmlite to v0.43.0
- numba to v0.60.0
Full Changelog: v1.4.1...v1.5.0
v1.4.1
Changed
- Upgraded torch to v1.13.1
What's Changed
- Upgrade torch to v1.13.1, fixes #206 by @ahmetoner in #212
Full Changelog: v1.4.0...v1.4.1
v1.4.0
Changed
- Upgraded
- SYSTRAN/faster-whisper to v1.0.1
- fastapi to v0.110.1
- uvicorn to v0.29.0
- gunicorn to v21.2.0
- tqdm to v4.66.2
- python-multipart to v0.0.9
- llvmlite to v0.42.0
- numba to v0.59.1
What's Changed
- Upgrade dependencies by @ahmetoner in #210
Full Changelog: v1.3.0...v1.4.0
v1.3.0
Added
- Compiled and added FFmpeg without LGPL libraries for license compliance
What's Changed
- Add image EXPOSE commands by @nick-allen in #188
- updated docs/endpoints.md with list of request params and example curl request by @ariym in #185
- Fix fileName with non-ASCII char error : https://github.com/ahmetone… by @zj1123581321 in #184
- Add FFmpeg compiling Docker stage by @ahmetoner in #194
Full Changelog: v1.2.4...v1.3.0
v1.2.4
v1.2.3
What's Changed
- Upgrade Whisper to
v20231106
forlarge-v3
by @ahmetoner in #160
Full Changelog: v1.2.2...v1.2.3
v1.2.2
v1.2.1
Enabled
- Enabled
vad_filter
forfaster-whisper
engine
Changed
- Changed misspelling in "Word level timestamps"
- Removed unused unidecode dependency
- Upgraded
- uvicorn to v0.23.2
- gunicorn to v21.0.1
- tqdm to v4.66.1
- python-multipart to v0.0.6
- fastapi to v0.104.1
- llvmlite to v0.41.1
- numba to v0.58.0
What's Changed
- Upgrade whisper by @ahmetoner in #136
- Release 1.2.0 by @ahmetoner in #137
- Enhance faster_whisper Engine by @EvilFreelancer in #128
- Upgrade dependencies by @ahmetoner in #151
New Contributors
- @EvilFreelancer made their first contribution in #128
Full Changelog: v1.1.1...v1.2.1
v1.2.0
Changed
- Upgraded
Added
- Added Word-Level Timestamps option for OpenAI Whisper
Updated
- Updated model conversion method (for Faster Whisper) to use Hugging Face downloader
- Updated default model paths to
~/.cache/whisper
.- For customization, modify the
ASR_MODEL_PATH
environment variable. - Ensure Docker volume is set for the corresponding directory to use caching.
docker run -d -p 9000:9000 -e ASR_MODEL_PATH=/data/whisper -v ./yourlocaldir:/data/whisper onerahmet/openai-whisper-asr-webservice:latest
- For customization, modify the
- Removed the
triton
dependency frompoetry.lock
to ensure the stability of the pipeline forARM-based
Docker images