What problem does it solve? Running large language models locally requires choosing the right GGUF quantization, finding compatible model files on Hugging Face, and configuring llama.cpp for your hardware, which involves many manual steps and error-prone guesswork. ## Core Features & Use Cases - Hub Model Discovery: Search Hugging Face for llama.cpp-compatible repos via URL workflows, extract exact GGUF filenames and sizes from the tree API, and build ready-to-run llama-server or llama-cli commands. - Quant Selection Guidance: Choose between Q4_K_M, Q5_K_M, Q6_K, IQ variants, and repo-native labels based on the user's RAM or VRAM budget. - Local Inference & Deployment: Run models on CPU, Apple Silicon, CUDA, ROCm, or Intel GPUs using llama-cli, llama-server with an OpenAI-compatible API, or the llama-cpp-python bindings. - Use Case: A user with 16 GB of VRAM asks which Qwen model to run locally; the skill searches the Hub, lists available GGUF quants with sizes, and outputs the exact llama-server command. ## Quick Start Ask the assistant to find a llama.cpp-compatible GGUF model on Hugging Face for your hardware and generate the llama-server command to run it locally.