├── .difyignore ├── .env.example ├── .gitattributes ├── .github └── workflows │ └── plugin-publish.yml ├── .gitignore ├── GUIDE.md ├── LICENSE ├── PRIVACY.md ├── README.md ├── _assets └── icon.svg ├── main.py ├── manifest.yaml ├── models └── tts │ ├── tts.py │ └── voicevox.yaml ├── provider ├── voicevox.py └── voicevox.yaml ├── requirements.txt ├── resources ├── addfeature.png └── settings.png └── voicevox-tts.difypkg /.difyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/.difyignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/plugin-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/.github/workflows/plugin-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/.gitignore -------------------------------------------------------------------------------- /GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- 1 | ## Privacy 2 | 3 | This plugin, VOICEVOX, does NOT collect any personal data. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/README.md -------------------------------------------------------------------------------- /_assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/_assets/icon.svg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/main.py -------------------------------------------------------------------------------- /manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/manifest.yaml -------------------------------------------------------------------------------- /models/tts/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/models/tts/tts.py -------------------------------------------------------------------------------- /models/tts/voicevox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/models/tts/voicevox.yaml -------------------------------------------------------------------------------- /provider/voicevox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/provider/voicevox.py -------------------------------------------------------------------------------- /provider/voicevox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/provider/voicevox.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dify_plugin>=0.2.0,<0.4.0 2 | pydub 3 | httpx -------------------------------------------------------------------------------- /resources/addfeature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/resources/addfeature.png -------------------------------------------------------------------------------- /resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/resources/settings.png -------------------------------------------------------------------------------- /voicevox-tts.difypkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uezo/dify-voicevox-tts/HEAD/voicevox-tts.difypkg --------------------------------------------------------------------------------