Contenerized text-to-speech engine based on Coqui's TTS with web API
Jacek Kowalski
2024-08-01 07fc027270023234d0cdc9744633480fa4da649c
commit | author | age
564abd 1 import uvicorn
JK 2
3 from app import app
4
5 if __name__ == '__main__':
6         uvicorn.run(app, host='0.0.0.0', port=8000)