GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

gguf-org/gguf.cpp overview

gguf cpp One package for working with GGUF models locally: an OpenAI compatible LLM server, a diffusion image/video generator and a GGUF metadata/tensor editor…

license:mitregion:us
Downloads
0
Likes
2
Pipeline
Author

Repository Files & Downloads

0 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Browse files on Hugging Face

Model Details

Model IDgguf-org/gguf.cpp
Authorgguf-org
Pipeline
Licensemit
Base model
Last modified2026-07-29T18:57:58.000Z

Model README

---

license: mit

---

gguf-cpp

One package for working with GGUF models locally: an OpenAI-compatible LLM

server, a diffusion image/video generator and a GGUF metadata/tensor editor

with a built-in quantizer — three panels on one GUI, powered by one unified

gguf.cpp engine compiled in a single build with a shared set of ggml

kernels.

Install

pip install gguf-cpp

The build compiles the bundled engine (CPU by default, Metal on macOS).

GPU backends are opt-in at install time:

GGUF_CPP_CUDA=1 pip install gguf-cpp     # NVIDIA
GGUF_CPP_HIP=1 pip install gguf-cpp      # AMD ROCm
GGUF_CPP_VULKAN=1 pip install gguf-cpp   # Vulkan

Run

gguf-cpp                 # unified GUI — Server / Diffuser / Editor panels
python -m gguf_cpp       # same thing

!screenshot

Each panel also runs on its own, exactly like the standalone

gguf-server / gguf-diffusion / gguf-editor packages did:

gguf-cpp server          # LLM server GUI
gguf-cpp diffuser        # image/video generation GUI
gguf-cpp editor          # GGUF editor GUI

And the engines are directly scriptable from the CLI:

gguf-cpp server engine -- --model model.gguf --port 8888
gguf-cpp diffuser engine -- -m sd.gguf -p "a lighthouse at dusk" -o out.png
gguf-cpp editor quantize -m in.gguf -o out-q4_k.gguf --type q4_k
gguf-cpp editor devices

or run it with gguf-connector

ggc gp

!screenshot

Run gguf-org/gguf.cpp with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models