├── .env.example ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── assets ├── ai_studio_icon_color.png ├── aoai-tts-soundboard.gif ├── ic_fluent_play_24_filled.svg ├── ic_fluent_sound_wave_circle_sparkle_24_regular.svg └── ic_fluent_stop_24_filled.svg ├── async-streaming-tts-sample.py ├── requirements.txt ├── soundboard.py ├── streaming-tts-to-file-sample.py └── vibe.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/README.md -------------------------------------------------------------------------------- /assets/ai_studio_icon_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/assets/ai_studio_icon_color.png -------------------------------------------------------------------------------- /assets/aoai-tts-soundboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/assets/aoai-tts-soundboard.gif -------------------------------------------------------------------------------- /assets/ic_fluent_play_24_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/assets/ic_fluent_play_24_filled.svg -------------------------------------------------------------------------------- /assets/ic_fluent_sound_wave_circle_sparkle_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/assets/ic_fluent_sound_wave_circle_sparkle_24_regular.svg -------------------------------------------------------------------------------- /assets/ic_fluent_stop_24_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/assets/ic_fluent_stop_24_filled.svg -------------------------------------------------------------------------------- /async-streaming-tts-sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/async-streaming-tts-sample.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /soundboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/soundboard.py -------------------------------------------------------------------------------- /streaming-tts-to-file-sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/streaming-tts-to-file-sample.py -------------------------------------------------------------------------------- /vibe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-openai-tts-demo/HEAD/vibe.json --------------------------------------------------------------------------------