├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── finetuned_model └── config.json ├── generator.py ├── llm_interface.py ├── loadandmergecheckpoint.py ├── lora.py ├── main.py ├── models.py ├── rag_system.py ├── requirements.txt ├── run_csm.py ├── setup.py ├── static ├── app.js ├── chat.js ├── crud.js └── test.mp3 ├── templates ├── chat.html ├── crud.html ├── index.html └── setup.html ├── test.py └── vad.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/config.py -------------------------------------------------------------------------------- /finetuned_model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/finetuned_model/config.json -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/generator.py -------------------------------------------------------------------------------- /llm_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/llm_interface.py -------------------------------------------------------------------------------- /loadandmergecheckpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/loadandmergecheckpoint.py -------------------------------------------------------------------------------- /lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/lora.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/models.py -------------------------------------------------------------------------------- /rag_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/rag_system.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_csm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/run_csm.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/setup.py -------------------------------------------------------------------------------- /static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/static/app.js -------------------------------------------------------------------------------- /static/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/static/chat.js -------------------------------------------------------------------------------- /static/crud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/static/crud.js -------------------------------------------------------------------------------- /static/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/static/test.mp3 -------------------------------------------------------------------------------- /templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/templates/chat.html -------------------------------------------------------------------------------- /templates/crud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/templates/crud.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/templates/setup.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/test.py -------------------------------------------------------------------------------- /vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidbrowne17/csm-streaming/HEAD/vad.py --------------------------------------------------------------------------------