What problem does it solve? Running large language models locally requires choosing the right GGUF quantization, finding compatible models on Hugging Face, and configuring llama.cpp for your hardware, which involves many manual steps and platform-specific details. ## Core Features & Use Cases - Local GGUF Inference: Run models on CPU, Apple Silicon, CUDA, ROCm, or Intel GPUs using llama-cli, llama-server, or the llama-cpp-python bindings. - Hugging Face Model Discovery: Search the Hub for llama.cpp-compatible repos, enumerate available .gguf files via the tree API, and build exact llama-server commands from URL-only workflows. - Quantization Guidance: Choose between Q4/Q5/Q6/IQ variants based on RAM or VRAM budgets, with repo-specific labels like UD-Q4_K_M preserved exactly. - Use Case: A developer wants to run a Qwen model on a laptop with 16 GB RAM. Use this Skill to search the Hub, identify the recommended quant and exact filename, and generate a working llama-server command. ## Quick Start Ask the agent to find a llama.cpp-compatible GGUF model on Hugging Face for a given model family and generate the llama-server command to run it locally.