├── .gitattributes ├── .gitignore ├── Readme.md ├── about_tab.py ├── chat_templates.json ├── config.py ├── env_vars_module.py ├── ik_llama.py ├── images ├── advanced.png ├── chat-templates.png ├── configs.png ├── env.png ├── ik_llama.png └── main.png ├── launch.py ├── llamacpp-server-launcher.py ├── requirements.txt ├── system.py └── version /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/Readme.md -------------------------------------------------------------------------------- /about_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/about_tab.py -------------------------------------------------------------------------------- /chat_templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/chat_templates.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/config.py -------------------------------------------------------------------------------- /env_vars_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/env_vars_module.py -------------------------------------------------------------------------------- /ik_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/ik_llama.py -------------------------------------------------------------------------------- /images/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/images/advanced.png -------------------------------------------------------------------------------- /images/chat-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/images/chat-templates.png -------------------------------------------------------------------------------- /images/configs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/images/configs.png -------------------------------------------------------------------------------- /images/env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/images/env.png -------------------------------------------------------------------------------- /images/ik_llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/images/ik_llama.png -------------------------------------------------------------------------------- /images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/images/main.png -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/launch.py -------------------------------------------------------------------------------- /llamacpp-server-launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/llamacpp-server-launcher.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/requirements.txt -------------------------------------------------------------------------------- /system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thad0ctor/llama-server-launcher/HEAD/system.py -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 2025-09-21-0 --------------------------------------------------------------------------------