├── .env.example ├── .gitignore ├── README.md ├── config.py ├── demo.py ├── install.py ├── main.py ├── requirements.txt ├── start.py ├── static ├── script.js └── style.css └── templates └── index.html /.env.example: -------------------------------------------------------------------------------- 1 | # 请将此文件复制为 .env 并填入您的 API Key 2 | DASHSCOPE_API_KEY=your_dashscope_api_key_here 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/config.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/demo.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/install.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/start.py -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mco2004/qwen-tts/HEAD/templates/index.html --------------------------------------------------------------------------------