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 with chat, streaming, and embedding support. - Hugging Face Model Discovery: Use URL-first workflows with the local-app page and tree API to find GGUF repos, enumerate exact filenames and sizes, and build launch commands without extra tooling. - Quantization Guidance: Choose between Q4_K_M, Q5_K_M, Q6_K, IQ variants, and repo-specific labels based on RAM or VRAM constraints. - Use Case: A developer wants to run a 24B-parameter model on a laptop with 16 GB of VRAM. The skill searches the Hub for llama.cpp-compatible repos, reads the hardware compatibility section, recommends UD-Q4_K_M, and outputs the exact llama-server command. ## Quick Start Ask the assistant to find a GGUF version of a Hugging Face model and generate the llama-server command to run it locally.