Instructions to use EnclaveHost/fable-fusion-27b-mtp-q4-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use EnclaveHost/fable-fusion-27b-mtp-q4-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="EnclaveHost/fable-fusion-27b-mtp-q4-gguf", filename="Fable-Fusion-27B-MTP-Q4_K_M.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use EnclaveHost/fable-fusion-27b-mtp-q4-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 EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M # Run inference directly in the terminal: llama cli -hf EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
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 EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
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 EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
Use Docker
docker model run hf.co/EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use EnclaveHost/fable-fusion-27b-mtp-q4-gguf with Ollama:
ollama run hf.co/EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
- Unsloth Studio
How to use EnclaveHost/fable-fusion-27b-mtp-q4-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 EnclaveHost/fable-fusion-27b-mtp-q4-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 EnclaveHost/fable-fusion-27b-mtp-q4-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for EnclaveHost/fable-fusion-27b-mtp-q4-gguf to start chatting
- Pi
How to use EnclaveHost/fable-fusion-27b-mtp-q4-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
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": "EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use EnclaveHost/fable-fusion-27b-mtp-q4-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 EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
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 EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use EnclaveHost/fable-fusion-27b-mtp-q4-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
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 "EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M" \ --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 EnclaveHost/fable-fusion-27b-mtp-q4-gguf with Docker Model Runner:
docker model run hf.co/EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
- Lemonade
How to use EnclaveHost/fable-fusion-27b-mtp-q4-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M
Run and chat with the model
lemonade run user.fable-fusion-27b-mtp-q4-gguf-Q4_K_M
List all available models
lemonade list
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 "EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M" \
--custom-provider-id llama-cpp \
--custom-compatibility openai \
--custom-text-input \
--accept-risk \
--skip-healthRun OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"fable-fusion-27b-mtp-q4-gguf (Enclave model volume)
Curated model volume for Enclave confidential inference:
DavidAU's Fable-Fusion-27B (Qwen3.6-27B fine-tune) at NEO imatrix Q4_K_M with
the trained multi-token-prediction head (~18.5 GB), bundled with the official
tokenizer.json so the volume is self-contained.
This is the small-share sibling of
EnclaveHost/fable-fusion-27b-mtp-gguf
(Q5_K_M, ~21.2 GB) โ same model, same geometry, one quant step down. The
quant step is the point: with speculative decoding on, Q5_K_M needs about
33.1 GB to serve on a 256K-context node (21.2 weights + 9.7 KV at the q8_0
node window + ~0.6 GB head KV + working set), which does not leave room inside
the 35.1 GB a 25% H200 share holds. Because the MTP head context is created
lazily on the first speculative session, a tenant in that position preloads
and warms up normally and then stalls the first real request. Q4_K_M puts the
same sum near 30.4 GB and serves that share with ~4.7 GB to spare.
Upstream ships 25 quants plus vision mmproj files in one repo (~450 GB). A Modelwrap volume carries the whole repo and a multi-gguf volume makes the host's preload pick ambiguous, so this repo carries exactly one served gguf.
Provenance
| File | Upstream | Revision | sha256 |
|---|---|---|---|
Fable-Fusion-27B-MTP-Q4_K_M.gguf |
DavidAU/Qwen3.6-27B-Fable-Fusion-711-Uncensored-Heretic-NM-DAU-NEO-MAX-MTP-GGUF, file Qwen3.6-27B-Fable-Fus-711-UnHeretic-NM-DAU-NEO-MAX-NEO-MTP-Q4_K_M.gguf |
ee5b7441ffe27869e1e5b4357733248d561c26b7 |
c796c2c011eaa0edf06395ff49cda5bfd4843ad52b86b58a83296dfc33849e4e |
tokenizer.json |
the Qwen3.x family copy, taken from EnclaveHost/fable-fusion-27b-mtp-gguf (byte-identical across the 9b / 27b / 122b volumes) | 00b1e5483d5457fe32c0dd82f2d24a19ef0dc957 |
5f9e4d4901a92b997e463c1f46055088b6cca5ca61a6522d1b9f64c4bb81cb42 |
The gguf sha256 is also the blob hash HuggingFace serves for the upstream file,
so the copy is verified end to end. LICENSE is the Apache-2.0 text; upstream
is Apache-2.0.
Verified GGUF geometry
Read from the file header (llama.cpp gguf-py), and what the serving config
must match:
| key | value |
|---|---|
general.architecture |
qwen35 (hybrid SSM/attention) |
qwen35.block_count |
65 โ 64 trunk layers + 1 MTP layer |
qwen35.nextn_predict_layers |
1 (blk.64.nextn.eh_proj, blk.64.nextn.enorm) |
qwen35.attention.head_count / head_count_kv |
24 / 4 |
qwen35.attention.key_length / value_length |
256 / 256 |
qwen35.full_attention_interval |
4 โ 16 full-attention trunk layers + the dense MTP layer = 17 KV-bearing layers |
qwen35.context_length |
262144 |
| vocab | 248320, eos `[248046 < |
| file type | 15 (Q4_K_M); the MTP tensors are Q8_0, as upstream sets them for every quant |
The qwen35 arch is served unchanged by the fleet's pinned llama.cpp
(LLAMA_COMMIT bec4772f); the MTP head additionally needs the batch4 MTP
toolchain on the host, and older hosts serve the volume as a plain 27b.
Usage on Enclave
Wrapped as a Tinfoil Modelwrap volume (dm-verity; the root hash is part of the
enclave measurement). Deployments attach it by name and the guest reads it at
/models/<name>; the host preloads the GGUF as the wasi-nn ggml graph. Single
file, so it loads on toolchains without split-family support, and with the
tokenizer bundled llm-chat's default lookup needs no cross-volume
configuration.
llm-chat catalog entry: chatml template, thinking: true, draft: "mtp"
(self-drafting through the head โ no second model), draft_tokens: 6.
Upstream notes that MTP acceptance falls off above temperature 1, so keep
sampling at or below it; draft_tokens / draft_accepted in the app's
completion stats report the acceptance rate directly.
Attach this volume or the Q5_K_M one, never both. llm-chat serves the largest attached model that fits, so a deployment holding both picks the Q5 and gives back exactly the stall this volume exists to avoid.
- Downloads last month
- 14
4-bit
Model tree for EnclaveHost/fable-fusion-27b-mtp-q4-gguf
Base model
Qwen/Qwen3.6-27B
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp# Start a local OpenAI-compatible server: llama serve -hf EnclaveHost/fable-fusion-27b-mtp-q4-gguf:Q4_K_M