├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── main.py ├── requirements.txt └── tests ├── openai ├── test_audio_transcription.sh ├── test_chat_completions.py └── test_chat_completions_text_modality_only.py └── powershell └── Invoke-Whisper-Audio-Transcription.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/openai/test_audio_transcription.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/tests/openai/test_audio_transcription.sh -------------------------------------------------------------------------------- /tests/openai/test_chat_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/tests/openai/test_chat_completions.py -------------------------------------------------------------------------------- /tests/openai/test_chat_completions_text_modality_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/tests/openai/test_chat_completions_text_modality_only.py -------------------------------------------------------------------------------- /tests/powershell/Invoke-Whisper-Audio-Transcription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morioka/tiny-openai-whisper-api/HEAD/tests/powershell/Invoke-Whisper-Audio-Transcription.ps1 --------------------------------------------------------------------------------