├── .dockerignore ├── .env.example ├── .gitattributes ├── .gitignore ├── 1-second-of-silence.mp3 ├── Dockerfile ├── README.md ├── app.py ├── assets └── screen.png └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/.gitignore -------------------------------------------------------------------------------- /1-second-of-silence.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/1-second-of-silence.mp3 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/app.py -------------------------------------------------------------------------------- /assets/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/assets/screen.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leokwsw/OpenAI-TTS-Gradio/HEAD/requirements.txt --------------------------------------------------------------------------------