Instructions to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF", dtype="auto") - llama-cpp-python
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF", filename="Pantheon-Reasoning-26B-A4B-1.1-MXFP4-Only-Imatrix.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K # Run inference directly in the terminal: llama cli -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K # Run inference directly in the terminal: llama cli -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K # Run inference directly in the terminal: ./llama-cli -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
Use Docker
docker model run hf.co/jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
- LM Studio
- Jan
- vLLM
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
- SGLang
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with Ollama:
ollama run hf.co/jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
- Unsloth Studio
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF to start chatting
- Pi
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
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": "jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with Docker Model Runner:
docker model run hf.co/jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
- Lemonade
How to use jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Q6_K
Run and chat with the model
lemonade run user.Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF-Q6_K
List all available models
lemonade list
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:# Run inference directly in the terminal:
llama cli -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:# Run inference directly in the terminal:
./llama-cli -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:# Run inference directly in the terminal:
./build/bin/llama-cli -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:Use Docker
docker model run hf.co/jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:💎 Pantheon-Reasoning-26B-A4B-1.1 - Custom Mixed Precision GGUFs with Imatrix
Pantheon is Gryphe's ongoing series of roleplay-focused finetunes built around a collection of diverse personas — characters with distinct personalities, voices, accents and mannerisms.
An experiment in bringing reasoning capability to the Pantheon roleplay series in the shape of a Gemma 4 MoE.
This repository contains custom, highly optimized, multi-tier mixed precision GGUF weights for Gryphe/Pantheon-Reasoning-26B-A4B-1.1.
Recommended: This model works best with reasoning/thinking enabled.
📊 Importance Matrix (Imatrix)
The following datasets were used for the imatrix:
- Custom Target Matrix (2048 ctx with 600 chunks), with all of the following:
- ~1.5MB of my own story/writing data
- eaddario/imatrix-calibration - tools_medium
- Crownelius/Opus-4.5-WritingStyle-1000x-formatted-fixed
- froggeric/imatrix - tiny.txt
- eaddario/imatrix-calibration - text_en_medium
- SimpleStories/SimpleStories
📄 GGUF Files
In order of quality:
| Filename | Size | Quants |
|---|---|---|
| Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q8_0_F16-Imatrix.gguf | 28.1 GB | MXFP4_MOE + Q8_0 + F16 |
| Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q8_0-Imatrix.gguf | 26.8 GB | MXFP4_MOE + Q8_0 |
| Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q6_K_Q8_0-Imatrix.gguf | 23.2 GB | MXFP4_MOE + Q6_K + Q8_0 |
| Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q6_K-Imatrix.gguf | 22.8 GB | MXFP4_MOE + Q6_K |
| Pantheon-Reasoning-26B-A4B-1.1-MXFP4-Only-Imatrix.gguf | 14.7 GB | MXFP4_MOE Only |
🔍 Precision Matrix & Flavor Variations
This repository provides multiple distinct manual configuration layouts to balance precision and memory constraints:
1. The Tri-Quant Hybrid Flavor (MXFP4 + Q8_0 + F16)
Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q8_0_F16-Imatrix.gguf - Designed for maximum quality preservation, this layout implements a strict 3-Tier Precision Matrix:
- Tier 1 (Core - F16 Precision):
token_embd.weight- Protects the critical input/output vocabulary mappings. Dramatically prevents text degradation. - Tier 2 (Backbone - Q8_0 Precision):
attn_q,attn_k,attn_v,attn_output,attn_qkv- All core attention layers. Keeps the model's primary attention mechanism high quality. - Tier 3 (Dense FFN - MXFP4 Precision):
ffn_down,ffn_gate,ffn_up- Downsamples the massive, heavy feed-forward network layers to hardware-optimized4-bitmicroscaling blocks.
2. The Dual-Quant Hybrid Flavor (MXFP4 + Q8_0)
Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q8_0-Imatrix.gguf - Designed for a slightly leaner memory profile, this layout utilizes 2-Tier Precision:
- Tier 1 (Backbone - Q8_0 Precision): Vocabulary embeddings (
token_embd), final logit projections (output), layer normalizations, and structural layers fall back to the heavyQ8_0format. - Tier 2 (Compute Layers - MXFP4 Precision):
attn_k,attn_q,attn_output,ffn_down,ffn_gate,ffn_up- The core attention projections and dense feed-forward network blocks are target-quantized directly toMXFP4to leverage highly optimized hardware kernels.
3. The Tri-Quant Hybrid Flavor (MXFP4 + Q6_K + Q8_0)
Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q6_K_Q8_0-Imatrix.gguf - Designed for a tighter VRAM footprint while preserving quality, this layout implements a strict 3-Tier Precision Matrix:
- Tier 1 (Core - Q8_0 Precision):
token_embd.weight- Keeps the critical input/output vocabulary mappings. Lessens the text degradation. - Tier 2 (Backbone - Q6_K Precision):
attn_q,attn_k,attn_v,attn_output,attn_qkv- All core attention layers. Keeps the model's primary attention mechanism at decent quality. - Tier 3 (Dense FFN - MXFP4 Precision):
ffn_down,ffn_gate,ffn_up- Downsamples the massive, heavy feed-forward network layers to hardware-optimized4-bitmicroscaling blocks.
4. The Dual-Quant Hybrid Flavor (MXFP4 + Q6_K)
Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q6_K-Imatrix.gguf - Designed for an even tighter VRAM footprint while preserving the mathematical depth of the logical layers, this layout utilizes 2-Tier Precision:
- Tier 1 (Backbone - Q6_K Precision): Vocabulary embeddings (
token_embd), final logit projections (output), layer normalizations, and structural layers fall back to the heavyQ6_Kformat. - Tier 2 (Compute Layers - MXFP4 Precision):
attn_k,attn_q,attn_output,ffn_down,ffn_gate,ffn_up- The core attention projections and dense feed-forward network blocks are target-quantized directly toMXFP4to leverage highly optimized hardware kernels.
5. Bonus Single-Quant (MXFP4)
Pantheon-Reasoning-26B-A4B-1.1-MXFP4-Only-Imatrix.gguf - Using only MXFP4, this shrinks the model down to 14.7 GB. The quality is not the best, but it can still do decent work.
- Single Tier (All Layers - MXFP4 Precision): All layers are target-quantized directly to
MXFP4, for speed and a low VRAM footprint.
📝 Exact Conversion Details
These files were converted via llama-quantize utilizing the following manual recipe parameters:
Generate Tri-Quant MXFP4_MOE + Q8_0 + F16:
llama-quantize \
--tensor-type "token_embd\.weight=F16" \
--tensor-type "blk\..*\.(ffn_down_exps)\.weight=Q8_0" \
--tensor-type "blk\..*\.(ffn_down|ffn_gate|ffn_up)\.weight=MXFP4" \
--imatrix "imatrix.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1_F16.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q8_0_F16-Imatrix.gguf" \
Q8_0
Generate Dual-Quant MXFP4_MOE + Q8_0:
llama-quantize \
--tensor-type "blk\..*\.(ffn_down_exps)\.weight=Q8_0" \
--tensor-type "blk\..*\.(attn_k|attn_q|attn_output|ffn_down|ffn_gate|ffn_up)\.weight=MXFP4" \
--imatrix "imatrix.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1_F16.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q8_0-Imatrix.gguf" \
Q8_0
Generate Tri-Quant MXFP4_MOE + Q6_K + Q8_0:
llama-quantize \
--tensor-type "token_embd\.weight=Q8_0" \
--tensor-type "blk\..*\.(ffn_down_exps)\.weight=Q6_K" \
--tensor-type "blk\..*\.(ffn_down|ffn_gate|ffn_up)\.weight=MXFP4" \
--imatrix "imatrix.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1_F16.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q6_K_Q8_0-Imatrix.gguf" \
Q6_K
Generate Dual-Quant MXFP4_MOE + Q6_K:
llama-quantize \
--tensor-type "blk\..*\.(ffn_down_exps)\.weight=Q6_K" \
--tensor-type "blk\..*\.(attn_k|attn_q|attn_output|ffn_down|ffn_gate|ffn_up)\.weight=MXFP4" \
--imatrix "imatrix.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1_F16.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1-MXFP4_Q6_K-Imatrix.gguf" \
Q6_K
Generate Single-Quant MXFP4_MOE:
llama-quantize \
--tensor-type "blk\..*\.(attn_k|attn_q|attn_output|ffn_down|ffn_gate|ffn_up|ffn_down_exps)\.weight=MXFP4" \
--imatrix "imatrix.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1_F16.gguf" \
"Pantheon-Reasoning-26B-A4B-1.1-MXFP4-Only-Imatrix.gguf" \
MXFP4
ℹ️ Misc Details
I'm doing this as a side hobby, with my AMD 5900X, 64GB DDR4, RTX 3060 12GB & RTX 5060 Ti 16GB.
This model works well for SillyTavern with CharMemory and MessageLimit.
However it does struggle to do tool calling, so don't use it as an agent.
For story-writing analysis, you'll have to put the content into the chat yourself.
If you want a similar model that can do story-writing analysis and tool calling, see Equinox-31B-i1-MXFP4-GGUF.
🤝 Support the Journey
As a passionate developer, I'm always programming, automating, or experimenting with new ideas.
I love building open-source tools, trying out new web tech, and creating things that don't yet exist, including local AI & quantizing models.
I love sharing these creations to give back to the community.
If my projects have saved you time or helped you out, consider supporting my work below!
✨ Acknowledgments
- Gryphe for the exceptional
Pantheon-Reasoning-26B-A4B-1.1base model.
- Downloads last month
- -
Model tree for jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF
Base model
google/gemma-4-26B-A4B
Install (macOS, Linux)
# Start a local OpenAI-compatible server with a web UI: llama serve -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF:# Run inference directly in the terminal: llama cli -hf jashepp/Pantheon-Reasoning-26B-A4B-1.1-MXFP4_MOE_Hybrid-Imatrix-GGUF: