├── .gitignore ├── LICENSE ├── README.md ├── api.py ├── app.py ├── assets └── whisper-v3-thumbnail.png ├── requirements.txt ├── run.sh └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/api.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/app.py -------------------------------------------------------------------------------- /assets/whisper-v3-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/assets/whisper-v3-thumbnail.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/run.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdolan21/openai-whisper-v3-api/HEAD/test.py --------------------------------------------------------------------------------