Image-Text-to-Text
GGUF
English
llama.cpp
quantized
qwen3.5
reasoning
uncensored
long-context
1M-context
function-calling
multimodal
vision
cybersecurity
biomedical
agentic
conversational
Instructions to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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 empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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 empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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 empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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 empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M
Use Docker
docker model run hf.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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": "empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M
- Ollama
How to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF with Ollama:
ollama run hf.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF with Docker Model Runner:
docker model run hf.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M
- Lemonade
How to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwythos-9B-Claude-Mythos-5-1M-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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 empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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 empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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 "empero-ai/Qwythos-9B-Claude-Mythos-5-1M-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"
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -31,19 +31,15 @@ tags:
|
|
| 31 |
<tr>
|
| 32 |
<td>
|
| 33 |
|
| 34 |
-
## π¨
|
| 35 |
|
| 36 |
-
|
| 37 |
|
| 38 |
-
Fixes in
|
| 39 |
|
| 40 |
-
-
|
| 41 |
-
-
|
| 42 |
-
-
|
| 43 |
-
- MTP-enabled variants added as `Qwythos-9B-Claude-Mythos-5-1M-MTP-*.gguf`;
|
| 44 |
-
- Q4/Q8 tool-calling, MTP draft speculation, 1M-context allocation, and vision projector smoke-tested with current llama.cpp.
|
| 45 |
-
|
| 46 |
-
Use the normal files for maximum runtime compatibility. Use the `-MTP-` files when you want llama.cpp MTP draft speculation.
|
| 47 |
|
| 48 |
</td>
|
| 49 |
</tr>
|
|
@@ -63,19 +59,19 @@ For full training details, evaluation numbers, and capability writeup, see the *
|
|
| 63 |
|
| 64 |
## Files
|
| 65 |
|
| 66 |
-
### Normal text weights β fixed
|
| 67 |
|
| 68 |
| File | Quant | Size | Notes |
|
| 69 |
|---|---|---|---|
|
| 70 |
-
| `Qwythos-9B-Claude-Mythos-5-1M-Q4_K_M.gguf` | Q4_K_M | 5.24 GiB / 5.63 GB | **recommended default** β fixed
|
| 71 |
-
| `Qwythos-9B-Claude-Mythos-5-1M-Q5_K_M.gguf` | Q5_K_M | 6.02 GiB / 6.47 GB | fixed
|
| 72 |
-
| `Qwythos-9B-Claude-Mythos-5-1M-Q6_K.gguf` | Q6_K | 6.85 GiB / 7.36 GB | fixed
|
| 73 |
-
| `Qwythos-9B-Claude-Mythos-5-1M-Q8_0.gguf` | Q8_0 | 8.87 GiB / 9.53 GB | fixed
|
| 74 |
-
| `Qwythos-9B-Claude-Mythos-5-1M-BF16.gguf` | BF16 | 16.69 GiB / 17.92 GB | fixed
|
| 75 |
|
| 76 |
If you don't know which to pick, **Q4_K_M is the right starting point** β it's the smallest practical quant with good quality preservation.
|
| 77 |
|
| 78 |
-
### MTP-enabled text weights β
|
| 79 |
|
| 80 |
These include the restored Qwen3.5-compatible MTP head inside the GGUF. Use them with llama.cpp builds that support MTP draft speculation, for example `--spec-type draft-mtp`.
|
| 81 |
|
|
@@ -130,7 +126,7 @@ llama-server \
|
|
| 130 |
-c 16384 --port 8080
|
| 131 |
```
|
| 132 |
|
| 133 |
-
MTP support requires a recent llama.cpp build. If your runtime does not support MTP yet, use the normal
|
| 134 |
|
| 135 |
---
|
| 136 |
|
|
|
|
| 31 |
<tr>
|
| 32 |
<td>
|
| 33 |
|
| 34 |
+
## π¨ v3 released β please redownload the GGUFs
|
| 35 |
|
| 36 |
+
Hotfix for the chat template. If you downloaded this repo before v3, please redownload your GGUF.
|
| 37 |
|
| 38 |
+
Fixes in v3:
|
| 39 |
|
| 40 |
+
- embedded chat template updated for preserved reasoning and adaptive thinking;
|
| 41 |
+
- fixes looping during long generation traces;
|
| 42 |
+
- fixes agentic use in harnesses like OpenCode, Abacus, Hermes, and Claude Code;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
</td>
|
| 45 |
</tr>
|
|
|
|
| 59 |
|
| 60 |
## Files
|
| 61 |
|
| 62 |
+
### Normal text weights β fixed v3 replacements
|
| 63 |
|
| 64 |
| File | Quant | Size | Notes |
|
| 65 |
|---|---|---|---|
|
| 66 |
+
| `Qwythos-9B-Claude-Mythos-5-1M-Q4_K_M.gguf` | Q4_K_M | 5.24 GiB / 5.63 GB | **recommended default** β fixed v3, best compatibility |
|
| 67 |
+
| `Qwythos-9B-Claude-Mythos-5-1M-Q5_K_M.gguf` | Q5_K_M | 6.02 GiB / 6.47 GB | fixed v3, balanced quality / size |
|
| 68 |
+
| `Qwythos-9B-Claude-Mythos-5-1M-Q6_K.gguf` | Q6_K | 6.85 GiB / 7.36 GB | fixed v3, high quality |
|
| 69 |
+
| `Qwythos-9B-Claude-Mythos-5-1M-Q8_0.gguf` | Q8_0 | 8.87 GiB / 9.53 GB | fixed v3, near-lossless |
|
| 70 |
+
| `Qwythos-9B-Claude-Mythos-5-1M-BF16.gguf` | BF16 | 16.69 GiB / 17.92 GB | fixed v3, full precision conversion base |
|
| 71 |
|
| 72 |
If you don't know which to pick, **Q4_K_M is the right starting point** β it's the smallest practical quant with good quality preservation.
|
| 73 |
|
| 74 |
+
### MTP-enabled text weights β fixed v3 variants
|
| 75 |
|
| 76 |
These include the restored Qwen3.5-compatible MTP head inside the GGUF. Use them with llama.cpp builds that support MTP draft speculation, for example `--spec-type draft-mtp`.
|
| 77 |
|
|
|
|
| 126 |
-c 16384 --port 8080
|
| 127 |
```
|
| 128 |
|
| 129 |
+
MTP support requires a recent llama.cpp build. If your runtime does not support MTP yet, use the normal fixed v3 files above.
|
| 130 |
|
| 131 |
---
|
| 132 |
|