What problem does it solve? Running large language models typically requires expensive NVIDIA GPUs and CUDA infrastructure, leaving CPU-only machines, Apple Silicon Macs, AMD/Intel GPUs, and edge devices without a viable inference path. This Skill provides guidance for deploying LLMs on commodity hardware using llama.cpp with GGUF quantization. ## Core Features & Use Cases - Cross-Platform Inference: Run LLMs on CPU-only servers, Apple Silicon via Metal, AMD GPUs via ROCm, and NVIDIA GPUs via CUDA, with hybrid CPU+GPU layer offloading. - GGUF Quantization Guidance: Choose among Q2_K through Q8_0 formats with size, speed, and perplexity trade-offs, plus importance matrix calibration for low-bit quantization. - OpenAI-Compatible Server: Deploy llama-server with chat completions, streaming, continuous batching, Docker packaging, and NGINX load balancing. - Use Case: Deploy a Llama 2-7B chatbot on an M3 MacBook by downloading a Q4_K_M GGUF model, building llama.cpp with Metal support, and serving an OpenAI-compatible API on port 8080. ## Quick Start Use the llama-cpp skill to download a Q4_K_M GGUF model from HuggingFace and start an OpenAI-compatible inference server on my local machine.