├── .dockerignore ├── .github └── workflows │ ├── license_tests.yml │ ├── propose_release.yml │ ├── publish_release.yml │ ├── publish_test_build.yml │ └── unit_tests.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── docker_overlay └── opt │ └── neon │ └── healthcheck.sh ├── neon_tts_plugin_coqui ├── __init__.py └── configs.py ├── requirements ├── docker.txt ├── requirements.txt └── test_requirements.txt ├── setup.py ├── tests └── test_tts.py └── version.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | .git 3 | Dockerfile -------------------------------------------------------------------------------- /.github/workflows/license_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/.github/workflows/license_tests.yml -------------------------------------------------------------------------------- /.github/workflows/propose_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/.github/workflows/propose_release.yml -------------------------------------------------------------------------------- /.github/workflows/publish_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/.github/workflows/publish_release.yml -------------------------------------------------------------------------------- /.github/workflows/publish_test_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/.github/workflows/publish_test_build.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/README.md -------------------------------------------------------------------------------- /docker_overlay/opt/neon/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/docker_overlay/opt/neon/healthcheck.sh -------------------------------------------------------------------------------- /neon_tts_plugin_coqui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/neon_tts_plugin_coqui/__init__.py -------------------------------------------------------------------------------- /neon_tts_plugin_coqui/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/neon_tts_plugin_coqui/configs.py -------------------------------------------------------------------------------- /requirements/docker.txt: -------------------------------------------------------------------------------- 1 | ovos-tts-server~=0.1 -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /requirements/test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/requirements/test_requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/tests/test_tts.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeonGeckoCom/neon-tts-plugin-coqui/HEAD/version.py --------------------------------------------------------------------------------