GGUF Model Format Explained: Supported Engines and Models

What Is GGUF?

GGUF is the model file format built for the C/C++ inference engine llama.cpp and the ggml library underneath it. It stores the weights (tensors) together with the metadata a runtime needs — architecture, tokenizer, chat template — in a single file. Download one file and it runs, which is why GGUF is the most common format in local LLM use.

Why It Matters

  • A fine-grained choice of quantizations. The same model usually comes as Q8_0, Q6_K, Q5_K_M, Q4_K_M, Q3_K_M, IQ2_XXS and more, so you can pick the one that fits your GPU memory. See our quantization and model-format glossary for how to read the names.
  • Runs without a GPU. It works on CPU alone and on NVIDIA (CUDA), AMD (ROCm / Vulkan) and Apple Silicon (Metal) GPUs, and can offload only part of the layers to the GPU when the model does not fit.
  • Broad app support. Ollama, LM Studio, KoboldCpp, Jan and many others use llama.cpp internally and load GGUF files directly.

Tips for Running It Locally

  • Q4_K_M is the usual starting point. It balances quality loss and file size well and is the default recommendation of many quantizers. Move up to Q5_K_M or Q6_K if you have memory to spare.
  • You need the file size plus room for context. The KV cache grows with conversation length, so a GPU that barely fits the file is not enough. The requirements tables in our articles are computed from the actual file sizes.
  • Vision models need a separate mmproj file. The vision encoder is usually shipped as its own GGUF; download it alongside the main file.
  • Many models have no official GGUF. In that case, use a build from a quantizer such as bartowski or unsloth. The list below separates articles whose repository is itself GGUF from those where we found a GGUF build.

Sources: the GGUF specification (docs/gguf.md in ggml-org/ggml), Hugging Face Hub documentation on GGUF and the llama.cpp README (all as of 2026-09-27).

Our Coverage and Data

Local Model Watch has published 22 article(s) on models available in GGUF: 12 where the repository itself is in GGUF, and 10 where we found a GGUF build of the model. The lists below only include builds we have checked (the publisher’s organization and well-known quantizers); a model missing here may still have a GGUF build elsewhere. Part of our model format index.

Main Engines That Load This Format

Engine Overview
llama.cpp LLM inference engine written in C/C++. Runs GGUF models on CPU and GPU (CUDA / Metal / Vulkan / ROCm) and underpins much of the local-LLM ecosystem, including Ollama, LM Studio and KoboldCpp.
Ollama Local LLM runtime that pulls and runs models with a single command. Ships an OpenAI-compatible API server for macOS, Linux and Windows.
KoboldCpp Single-file runtime that bundles llama.cpp with a web UI and API. Download a GGUF model and launch.
llamafile Packages model weights and llama.cpp into one executable that runs on any OS without installation.
LocalAI Self-hosted, OpenAI-API-compatible inference server that fronts multiple backends for text, image and audio.
Jan Offline desktop chat app with llama.cpp built in; doubles as a local API server.

Models Available in GGUF

→ Scroll horizontally to see all columns

Published Model Where to get it Quantizations Smallest VRAM tier Article
2026-09-26 MiniMaxAI/MiniMax-H3 unsloth/MiniMax-H3-GGUF Q2_K, Q2_K_XL, Q3_K, Q3_K_XL, Q4_K, Q2_K_M … 32GB MiniMax-H3 Audio-Visual Video Generation Model: 32GB+ VRAM, File List
2026-09-26 deepseek-ai/DeepSeek-V4-Pro-0813 unsloth/DeepSeek-V4-Pro-0813-GGUF, DevQuasar/deepseek-ai.DeepSeek-V4-Pro-0813-GGUF Q4_K_XL, Q8_K_XL, Q2_K, Q3_K_M, Q4_K_M — DeepSeek-V4-Pro-0813 Text Generation Model: ~998GB Memory, GGUF Builds
2026-09-26 Qwen/Qwen3.8-27B unsloth/Qwen3.8-27B-GGUF, lmstudio-community/Qwen3.8-27B-GGUF IQ1_S, IQ1_M, IQ2_XXS, IQ2_S, Q2_K_XL, IQ3_XXS … 8GB Qwen3.8-27B Multimodal Vision-Language Model: 8GB+ VRAM, GGUF Builds
2026-09-25 LiquidAI/LFM2.5-VL-3B-DSpark LiquidAI/LFM2.5-VL-3B-DSpark-GGUF F16 4GB LFM2.5-VL-3B-DSpark Draft Model for Vision-Language Models: 4GB+ VRAM
2026-09-24 pfnet/plamo-3-610m-fin-instruct mradermacher/plamo-3-610m-fin-instruct-GGUF Q2_K, Q3_K_S, Q3_K_M, Q3_K_L, IQ4_XS, Q4_K_S … 4GB plamo-3-610m-fin-instruct Text Generation Model: 4GB+ VRAM
2026-09-24 togethercomputer/Tev1-4B-experimental bartowski/togethercomputer_Tev1-4B-experimental-GGUF IQ2_M, Q2_K, IQ3_XXS, Q3_K_S, IQ3_XS, Q3_K_M … 4GB Tev1-4B-experimental Text Generation Model: 4GB+ VRAM, GGUF Builds
2026-09-22 ggml-org/MiMo-V2.6-Flash-RL-GGUF This repository — — MiMo-V2.6-Flash-RL-GGUF Multimodal MoE Model: ~141GB Memory
2026-09-22 ggml-org/MiMo-V2.6-Distill-Qwen-9B-GGUF This repository — 12GB MiMo-V2.6-Distill-Qwen-9B-GGUF Vision-Language Model: 12GB+ VRAM
2026-09-21 abenzerps/Qwen-Image-2.1-Uncensored-GGUF This repository — 16GB Qwen-Image-2.1-Uncensored-GGUF Image Generation Model: 16GB+ VRAM
2026-09-18 prism-ml/Ternary-Bonsai-2-27B-gguf This repository — 8GB Ternary-Bonsai-2-27B-gguf Text Generation Model: 8GB+ VRAM
2026-09-18 tencent/WeVisDoc-4B mradermacher/WeVisDoc-4B-GGUF, mradermacher/WeVisDoc-4B-i1-GGUF Q2_K, Q3_K_S, Q3_K_M, Q3_K_L, IQ4_XS, Q4_K_S … 4GB Tencent Releases WeVisDoc-2B and WeVisDoc-4B Document Parsing Models
2026-09-15 bartowski/vectionlabs_Salience-27B-R6-GGUF This repository — 12GB vectionlabs_Salience-27B-R6-GGUF Vision-Language Model: 12GB+ VRAM
2026-09-15 bartowski/Intern-S2-397B-GGUF This repository — — Intern-S2-397B-GGUF Vision-Language Model: ~102GB Memory
2026-09-14 bartowski/TheDrummer_Orion-26B-A4B-v1.1-GGUF This repository — 12GB TheDrummer_Orion-26B-A4B-v1.1-GGUF Multimodal Model: 12GB+ VRAM
2026-09-13 DavidAU/Qwen3.8-27B-TWIN-TURBO-Fable-Cold-Fusion-709-L-Uncensored-NM-DAU-NEO-MTP-GGUF This repository — 12GB Qwen3.8-27B TWIN-TURBO Uncensored GGUF Released
2026-09-12 agentionai/Signal-3.8-27B-GGUF This repository — 16GB Signal-3.8-27B-GGUF Token-Efficient Optimized GGUF Model: 16GB+ VRAM
2026-09-11 bartowski/Gryphe_Pantheon-Reasoning-26B-A4B-1.1-V2-GGUF This repository — 12GB Gryphe_Pantheon-Reasoning-26B-A4B-1.1-V2-GGUF: 12GB+ VRAM
2026-09-09 nex-agi/Nex-N2.5-Pro bartowski/Nex-N2.5-Pro-GGUF, DevQuasar/nex-agi.Nex-N2.5-Pro-GGUF IQ1_S, IQ1_M, IQ2_XXS, IQ2_XS, IQ2_S, IQ2_M … — Nex-N2.5-Pro Long-Horizon Agent Model: ~98GB Memory, GGUF Builds
2026-09-09 nex-agi/Nex-N2.5-mini bartowski/nex-agi_Nex-N2.5-mini-GGUF, mradermacher/Nex-N2.5-mini-GGUF IQ2_XXS, IQ2_XS, IQ2_S, IQ2_M, Q2_K, IQ3_XXS … 16GB Nex-N2.5-mini Agent Model for Long-Horizon Tasks: 16GB+ VRAM
2026-09-08 openbmb/MiniCPM5-2B openbmb/MiniCPM5-2B-GGUF, bartowski/MiniCPM5-2B-GGUF Q4_K_M, Q8_0, F16, IQ2_M, Q2_K, IQ3_XXS … 4GB MiniCPM5-2B On-Device Model Strong in Code and Math: 4GB+ VRAM

“Smallest VRAM tier" is the smallest tier in the requirements table of each article (for other builds, of those builds; for image, video and audio models, always the article’s own table, which counts every component). Leave headroom for context length.

Last updated 2026-09-26 (JST). The explanation at the top of this page was written with the help of AI from the primary sources it cites. The tables under “Our Coverage and Data" are assembled by code from our article log.