What problem does it solve? Running large language models locally without NVIDIA GPUs or cloud APIs is difficult, and converting HuggingFace models into efficient quantized formats requires deep knowledge of tooling. This Skill provides complete workflows for GGUF conversion, quantization, and inference with llama.cpp on any hardware. ## Core Features & Use Cases - GGUF Conversion & Quantization: Convert HuggingFace models to GGUF and quantize with K-quants (Q2_K through Q8_0) plus imatrix calibration for better low-bit quality. - Cross-Platform Inference: Run models on CPU, Apple Silicon (Metal), NVIDIA (CUDA), and AMD (ROCm) via CLI, Python bindings, or an OpenAI-compatible server. - Ecosystem Integration: Deploy through Ollama, LM Studio, text-generation-webui, or connect OpenAI clients to llama-server. - Use Case: Convert Llama-3.1-8B to Q4_K_M GGUF with an importance matrix, then serve it on an M3 Mac via llama-server so your app can call a local OpenAI-compatible chat endpoint. ## Quick Start Convert my HuggingFace model to a Q4_K_M GGUF file and start a local OpenAI-compatible server on port 8080 with GPU offloading.