├── .env ├── .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_EN.md ├── app.py ├── images ├── logo.png └── screenshot.png ├── llmChat.py ├── ollamaChatTTS.py ├── requirements.txt ├── static └── js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.min.css │ ├── jquery.min.js │ └── layer │ ├── layer.js │ ├── mobile │ ├── layer.js │ └── need │ │ └── layer.css │ └── theme │ └── default │ ├── icon-ext.png │ ├── icon.png │ ├── layer.css │ ├── loading-0.gif │ ├── loading-1.gif │ └── loading-2.gif ├── templates └── index.html ├── test.py └── voice.py /.env: -------------------------------------------------------------------------------- 1 | WEB_ADDRESS=127.0.0.1:9966 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatTTS/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import Chat -------------------------------------------------------------------------------- /ChatTTS/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ChatTTS/core.py -------------------------------------------------------------------------------- /ChatTTS/experimental/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ChatTTS/experimental/llm.py -------------------------------------------------------------------------------- /ChatTTS/infer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ChatTTS/infer/api.py -------------------------------------------------------------------------------- /ChatTTS/model/dvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ChatTTS/model/dvae.py -------------------------------------------------------------------------------- /ChatTTS/model/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ChatTTS/model/gpt.py -------------------------------------------------------------------------------- /ChatTTS/utils/gpu_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ChatTTS/utils/gpu_utils.py -------------------------------------------------------------------------------- /ChatTTS/utils/infer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ChatTTS/utils/infer_utils.py -------------------------------------------------------------------------------- /ChatTTS/utils/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ChatTTS/utils/io_utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/README_EN.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/app.py -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /llmChat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/llmChat.py -------------------------------------------------------------------------------- /ollamaChatTTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/ollamaChatTTS.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/bootstrap.min.css -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/layer.js -------------------------------------------------------------------------------- /static/js/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/mobile/layer.js -------------------------------------------------------------------------------- /static/js/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /static/js/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /static/js/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/theme/default/icon.png -------------------------------------------------------------------------------- /static/js/layer/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/theme/default/layer.css -------------------------------------------------------------------------------- /static/js/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /static/js/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /static/js/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/static/js/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/templates/index.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/test.py -------------------------------------------------------------------------------- /voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hkgood/Ollama_ChatTTS/HEAD/voice.py --------------------------------------------------------------------------------