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 specific hardware, which involves many manual steps and platform-specific details. ## 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. - Quantization Guidance: Choose between Q4_K_M, Q5_K_M, Q6_K, IQ variants, and repo-native labels based on RAM/VRAM budgets and use case (chat, code, edge devices). - Local Inference & Deployment: Run models on CPU, Apple Silicon, CUDA, ROCm, or Intel GPUs using llama-cpp-python bindings or an OpenAI-compatible server with Docker and load balancing. - Use Case: A developer wants to run a 24B-parameter model on a laptop with 16 GB of RAM. The skill finds the right GGUF repo on Hugging Face, recommends a Q4_K_M quant that fits, and outputs the exact llama-server command. ## Quick Start Ask the assistant to find a llama.cpp-compatible GGUF model for a given Hugging Face repo and generate the llama-server command with a recommended quantization for your hardware.