├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── __init__.py ├── configs └── config.ini ├── core.py ├── example └── index.html ├── main.py ├── requirements.txt ├── src └── quantize.py ├── style.css └── webui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /configs/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/configs/config.ini -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/core.py -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/example/index.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/src/quantize.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/style.css -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aesthisia/LLMinator/HEAD/webui.py --------------------------------------------------------------------------------