├── .gitignore ├── ChatTTS ├── __init__.py ├── core.py ├── experimental │ └── llm.py ├── infer │ └── api.py ├── model │ ├── dvae.py │ └── gpt.py └── utils │ ├── gpu_utils.py │ ├── infer_utils.py │ └── io_utils.py ├── LICENSE ├── README.md ├── README_CN.md ├── images └── webui_image.png ├── infer.ipynb ├── requirements.txt └── webui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatTTS/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import Chat -------------------------------------------------------------------------------- /ChatTTS/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/ChatTTS/core.py -------------------------------------------------------------------------------- /ChatTTS/experimental/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/ChatTTS/experimental/llm.py -------------------------------------------------------------------------------- /ChatTTS/infer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/ChatTTS/infer/api.py -------------------------------------------------------------------------------- /ChatTTS/model/dvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/ChatTTS/model/dvae.py -------------------------------------------------------------------------------- /ChatTTS/model/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/ChatTTS/model/gpt.py -------------------------------------------------------------------------------- /ChatTTS/utils/gpu_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/ChatTTS/utils/gpu_utils.py -------------------------------------------------------------------------------- /ChatTTS/utils/infer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/ChatTTS/utils/infer_utils.py -------------------------------------------------------------------------------- /ChatTTS/utils/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/ChatTTS/utils/io_utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/README_CN.md -------------------------------------------------------------------------------- /images/webui_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/images/webui_image.png -------------------------------------------------------------------------------- /infer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/infer.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cronrpc/ChatTTS-webui/HEAD/webui.py --------------------------------------------------------------------------------