How to use from
Pi
Start the llama.cpp server
# Install llama.cpp:
brew install llama.cpp
# Start a local OpenAI-compatible server:
llama serve -hf WaveCut/Qwythos-9B-v2-Heretic-GGUF:
Configure the model in Pi
# Install Pi:
npm install -g @mariozechner/pi-coding-agent
# Add to ~/.pi/agent/models.json:
{
  "providers": {
    "llama-cpp": {
      "baseUrl": "http://localhost:8080/v1",
      "api": "openai-completions",
      "apiKey": "none",
      "models": [
        {
          "id": "WaveCut/Qwythos-9B-v2-Heretic-GGUF:"
        }
      ]
    }
  }
}
Run Pi
# Start Pi in your project directory:
pi
Quick Links

Qwythos-9B-v2-Heretic-GGUF

GGUF quantizations of WaveCut/Qwythos-9B-v2-Heretic — the Heretic-decensored version of empero-ai/Qwythos-9B-v2. Use these with llama.cpp, Ollama, LM Studio, KoboldCpp, or any other GGUF runtime.

Files

File Format ~Bits/weight Size Recommended use
Qwythos-9B-v2-Heretic.Q4_K_M.gguf K-quant (mixed) 4.5 ~5.6 GB Best 4-bit default — fits in ~6.5 GB VRAM, balanced quality/size
Qwythos-9B-v2-Heretic.Q5_K_M.gguf K-quant (mixed) 5.5 ~6.5 GB Higher quality 5-bit, ~7.5 GB VRAM
Qwythos-9B-v2-Heretic.Q6_K.gguf K-quant (mixed) 6.6 ~7.4 GB Very close to FP16, ~8.5 GB VRAM
Qwythos-9B-v2-Heretic.Q8_0.gguf 8-bit symmetric 8.5 ~9.5 GB Effectively lossless, ~10.5 GB VRAM

Quantization recipe

Step Tool Version
HF → F16 GGUF convert_hf_to_gguf.py llama.cpp b9986 (commit 91c631b), run with --no-mtp
Quantize llama-quantize llama.cpp b9986 (prebuilt linux-x64)

Note on --no-mtp: the base Qwen3.5 model bundles a multi-token-prediction (MTP) head as block #32. Excluding it via --no-mtp produces a clean 32-block text GGUF that loads correctly in current llama.cpp builds. If you want speculative decoding with the MTP head, run convert_hf_to_gguf.py --mtp separately.

No imatrix (importance matrix) calibration was used — K-quants hold up well without one for this model size, and Q8_0 is format-defined and never benefits from it.

Architecture

Qwen3.5 hybrid — 32 blocks mixing attention and SSM (Mamba-style) layers. Supported in llama.cpp b9986 and later under the qwen35 architecture key.

Usage

# llama.cpp
llama-cli -m Qwythos-9B-v2-Heretic.Q4_K_M.gguf -p "Hello" --chat-template chat_template.jinja

# Ollama (create a Modelfile pointing to the .gguf)
ollama create qwythos-heretic -f Modelfile
ollama run qwythos-heretic

Disclaimer

Uncensored (safety alignment removed via Heretic). The original empero-ai/Qwythos-9B-v2 maintainers are not affiliated with this derivative. Use responsibly.

Downloads last month
997
GGUF
Model size
9B params
Architecture
qwen35
Hardware compatibility
Log In to add your hardware

4-bit

5-bit

6-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for WaveCut/Qwythos-9B-v2-Heretic-GGUF