├── .flake8 ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── LICENSE ├── Makefile ├── README.md ├── hack ├── build.sh ├── ci.sh ├── install.sh ├── lib │ ├── init.sh │ ├── log.sh │ ├── util.sh │ ├── version.sh │ └── windows │ │ ├── init.ps1 │ │ ├── log.ps1 │ │ ├── util.ps1 │ │ └── version.ps1 ├── lint.sh ├── publish-pypi.sh ├── test.sh └── windows │ ├── build.ps1 │ ├── ci.ps1 │ ├── install.ps1 │ ├── lint.ps1 │ ├── publish-pypi.ps1 │ └── test.ps1 ├── poetry.lock ├── pyproject.toml └── vox_box ├── __init__.py ├── backends ├── stt │ ├── base.py │ ├── faster_whisper.py │ └── funasr.py └── tts │ ├── bark.py │ ├── base.py │ ├── cosyvoice.py │ ├── cosyvoice_spk2info.pt │ └── dia.py ├── cmd ├── __init__.py ├── start.py └── version.py ├── config ├── __init__.py └── config.py ├── downloader ├── downloaders.py └── hub.py ├── estimator ├── bark.py ├── base.py ├── cosyvoice.py ├── dia.py ├── estimate.py ├── faster_whisper.py └── funasr.py ├── logging.py ├── main.py ├── server ├── app.py ├── model.py ├── routers.py └── server.py └── utils ├── audio.py ├── compat_importlib.py ├── file.py ├── log.py └── model.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/README.md -------------------------------------------------------------------------------- /hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/build.sh -------------------------------------------------------------------------------- /hack/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/ci.sh -------------------------------------------------------------------------------- /hack/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/install.sh -------------------------------------------------------------------------------- /hack/lib/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lib/init.sh -------------------------------------------------------------------------------- /hack/lib/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lib/log.sh -------------------------------------------------------------------------------- /hack/lib/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lib/util.sh -------------------------------------------------------------------------------- /hack/lib/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lib/version.sh -------------------------------------------------------------------------------- /hack/lib/windows/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lib/windows/init.ps1 -------------------------------------------------------------------------------- /hack/lib/windows/log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lib/windows/log.ps1 -------------------------------------------------------------------------------- /hack/lib/windows/util.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lib/windows/util.ps1 -------------------------------------------------------------------------------- /hack/lib/windows/version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lib/windows/version.ps1 -------------------------------------------------------------------------------- /hack/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/lint.sh -------------------------------------------------------------------------------- /hack/publish-pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/publish-pypi.sh -------------------------------------------------------------------------------- /hack/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/test.sh -------------------------------------------------------------------------------- /hack/windows/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/windows/build.ps1 -------------------------------------------------------------------------------- /hack/windows/ci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/windows/ci.ps1 -------------------------------------------------------------------------------- /hack/windows/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/windows/install.ps1 -------------------------------------------------------------------------------- /hack/windows/lint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/windows/lint.ps1 -------------------------------------------------------------------------------- /hack/windows/publish-pypi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/windows/publish-pypi.ps1 -------------------------------------------------------------------------------- /hack/windows/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/hack/windows/test.ps1 -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/pyproject.toml -------------------------------------------------------------------------------- /vox_box/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/__init__.py -------------------------------------------------------------------------------- /vox_box/backends/stt/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/backends/stt/base.py -------------------------------------------------------------------------------- /vox_box/backends/stt/faster_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/backends/stt/faster_whisper.py -------------------------------------------------------------------------------- /vox_box/backends/stt/funasr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/backends/stt/funasr.py -------------------------------------------------------------------------------- /vox_box/backends/tts/bark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/backends/tts/bark.py -------------------------------------------------------------------------------- /vox_box/backends/tts/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/backends/tts/base.py -------------------------------------------------------------------------------- /vox_box/backends/tts/cosyvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/backends/tts/cosyvoice.py -------------------------------------------------------------------------------- /vox_box/backends/tts/cosyvoice_spk2info.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/backends/tts/cosyvoice_spk2info.pt -------------------------------------------------------------------------------- /vox_box/backends/tts/dia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/backends/tts/dia.py -------------------------------------------------------------------------------- /vox_box/cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/cmd/__init__.py -------------------------------------------------------------------------------- /vox_box/cmd/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/cmd/start.py -------------------------------------------------------------------------------- /vox_box/cmd/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/cmd/version.py -------------------------------------------------------------------------------- /vox_box/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/config/__init__.py -------------------------------------------------------------------------------- /vox_box/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/config/config.py -------------------------------------------------------------------------------- /vox_box/downloader/downloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/downloader/downloaders.py -------------------------------------------------------------------------------- /vox_box/downloader/hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/downloader/hub.py -------------------------------------------------------------------------------- /vox_box/estimator/bark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/estimator/bark.py -------------------------------------------------------------------------------- /vox_box/estimator/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/estimator/base.py -------------------------------------------------------------------------------- /vox_box/estimator/cosyvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/estimator/cosyvoice.py -------------------------------------------------------------------------------- /vox_box/estimator/dia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/estimator/dia.py -------------------------------------------------------------------------------- /vox_box/estimator/estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/estimator/estimate.py -------------------------------------------------------------------------------- /vox_box/estimator/faster_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/estimator/faster_whisper.py -------------------------------------------------------------------------------- /vox_box/estimator/funasr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/estimator/funasr.py -------------------------------------------------------------------------------- /vox_box/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/logging.py -------------------------------------------------------------------------------- /vox_box/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/main.py -------------------------------------------------------------------------------- /vox_box/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/server/app.py -------------------------------------------------------------------------------- /vox_box/server/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/server/model.py -------------------------------------------------------------------------------- /vox_box/server/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/server/routers.py -------------------------------------------------------------------------------- /vox_box/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/server/server.py -------------------------------------------------------------------------------- /vox_box/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/utils/audio.py -------------------------------------------------------------------------------- /vox_box/utils/compat_importlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/utils/compat_importlib.py -------------------------------------------------------------------------------- /vox_box/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/utils/file.py -------------------------------------------------------------------------------- /vox_box/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/utils/log.py -------------------------------------------------------------------------------- /vox_box/utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpustack/vox-box/HEAD/vox_box/utils/model.py --------------------------------------------------------------------------------