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"
Update README: add vision (mmproj) section + usage examples
Browse files
README.md
CHANGED
|
@@ -16,6 +16,8 @@ tags:
|
|
| 16 |
- long-context
|
| 17 |
- 1M-context
|
| 18 |
- function-calling
|
|
|
|
|
|
|
| 19 |
- cybersecurity
|
| 20 |
- biomedical
|
| 21 |
- agentic
|
|
@@ -37,7 +39,9 @@ For full training details, evaluation numbers, and capability writeup, see the *
|
|
| 37 |
|
| 38 |
---
|
| 39 |
|
| 40 |
-
## Files
|
|
|
|
|
|
|
| 41 |
|
| 42 |
| File | Quant | Size | Notes |
|
| 43 |
|---|---|---|---|
|
|
@@ -49,6 +53,14 @@ For full training details, evaluation numbers, and capability writeup, see the *
|
|
| 49 |
|
| 50 |
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.
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
---
|
| 53 |
|
| 54 |
## Quick start
|
|
@@ -76,6 +88,45 @@ Drop any of the `.gguf` files into your runtime's model directory. Qwythos uses
|
|
| 76 |
|
| 77 |
---
|
| 78 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
## Sampling recommendations
|
| 80 |
|
| 81 |
Qwythos is a reasoning model — every response opens with a `<think>...</think>` block before the final answer. Use these settings as defaults:
|
|
@@ -146,4 +197,5 @@ Weights are released under **Apache-2.0**, inherited from the Qwen3.5-9B base. S
|
|
| 146 |
- Developed and released by [Empero](https://empero.org)
|
| 147 |
- Base model: [Qwen3.5-9B](https://huggingface.co/Qwen/Qwen3.5-9B) (Alibaba Qwen team)
|
| 148 |
- Quantization: [llama.cpp](https://github.com/ggml-org/llama.cpp) (ggml-org)
|
|
|
|
| 149 |
- HF model: [empero-ai/Qwythos-9B-Claude-Mythos-5-1M](https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M)
|
|
|
|
| 16 |
- long-context
|
| 17 |
- 1M-context
|
| 18 |
- function-calling
|
| 19 |
+
- multimodal
|
| 20 |
+
- vision
|
| 21 |
- cybersecurity
|
| 22 |
- biomedical
|
| 23 |
- agentic
|
|
|
|
| 39 |
|
| 40 |
---
|
| 41 |
|
| 42 |
+
## Files
|
| 43 |
+
|
| 44 |
+
### Text weights — pick one quant
|
| 45 |
|
| 46 |
| File | Quant | Size | Notes |
|
| 47 |
|---|---|---|---|
|
|
|
|
| 53 |
|
| 54 |
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.
|
| 55 |
|
| 56 |
+
### Vision projector — for image input
|
| 57 |
+
|
| 58 |
+
| File | Size | Notes |
|
| 59 |
+
|---|---|---|
|
| 60 |
+
| `mmproj-Qwythos-9B-Claude-Mythos-5-1M-f16.gguf` | ~876 MB | CLIP-style vision encoder + projector; **required for images**, pairs with any quant above |
|
| 61 |
+
|
| 62 |
+
Qwythos inherits its **vision tower from the Qwen3.5-9B base model** — the vision path was *frozen* during SFT (training was text-only), so the vision behavior is identical to base Qwen3.5-9B's multimodal capability. The mmproj is interchangeable with any community-built Qwen3.5-9B `mmproj-*.gguf`.
|
| 63 |
+
|
| 64 |
---
|
| 65 |
|
| 66 |
## Quick start
|
|
|
|
| 88 |
|
| 89 |
---
|
| 90 |
|
| 91 |
+
## Vision (image input)
|
| 92 |
+
|
| 93 |
+
Qwythos supports **image input** out of the box. Download both a text quant and the `mmproj-*.gguf` file from this repo, then run with llama.cpp's multimodal CLI or server.
|
| 94 |
+
|
| 95 |
+
### llama.cpp (`llama-mtmd-cli`)
|
| 96 |
+
|
| 97 |
+
```bash
|
| 98 |
+
llama-mtmd-cli \
|
| 99 |
+
-m Qwythos-9B-Claude-Mythos-5-1M-Q4_K_M.gguf \
|
| 100 |
+
--mmproj mmproj-Qwythos-9B-Claude-Mythos-5-1M-f16.gguf \
|
| 101 |
+
--image ./photo.jpg \
|
| 102 |
+
-p "Describe this image in detail." \
|
| 103 |
+
--temp 0.6 --top-p 0.95 --top-k 20 \
|
| 104 |
+
-c 16384
|
| 105 |
+
```
|
| 106 |
+
|
| 107 |
+
### llama.cpp server (OpenAI-compatible API with images)
|
| 108 |
+
|
| 109 |
+
```bash
|
| 110 |
+
llama-server \
|
| 111 |
+
-m Qwythos-9B-Claude-Mythos-5-1M-Q4_K_M.gguf \
|
| 112 |
+
--mmproj mmproj-Qwythos-9B-Claude-Mythos-5-1M-f16.gguf \
|
| 113 |
+
-c 16384 --port 8080
|
| 114 |
+
```
|
| 115 |
+
|
| 116 |
+
Then POST to `/v1/chat/completions` with an image URL or base64 payload — the standard OpenAI vision API shape works.
|
| 117 |
+
|
| 118 |
+
### LM Studio
|
| 119 |
+
|
| 120 |
+
Load the text quant; LM Studio detects the matching `mmproj-*.gguf` in the same folder and enables the image-attach button automatically.
|
| 121 |
+
|
| 122 |
+
### What vision unlocks
|
| 123 |
+
|
| 124 |
+
Since Qwythos inherits its vision tower unchanged from Qwen3.5-9B base, expect Qwen3.5-9B's documented vision capabilities: detailed image description, OCR (printed + handwritten), chart/table reading, UI/document understanding, basic spatial reasoning.
|
| 125 |
+
|
| 126 |
+
**Honest note:** the SFT used to produce Qwythos was **text-only** — we did not fine-tune the vision tower or train on any image-paired data. Image-grounded reasoning therefore inherits the base model's behavior; it has not been independently evaluated as part of this release. If your application is *primarily* vision-driven, validate on your own use case first.
|
| 127 |
+
|
| 128 |
+
---
|
| 129 |
+
|
| 130 |
## Sampling recommendations
|
| 131 |
|
| 132 |
Qwythos is a reasoning model — every response opens with a `<think>...</think>` block before the final answer. Use these settings as defaults:
|
|
|
|
| 197 |
- Developed and released by [Empero](https://empero.org)
|
| 198 |
- Base model: [Qwen3.5-9B](https://huggingface.co/Qwen/Qwen3.5-9B) (Alibaba Qwen team)
|
| 199 |
- Quantization: [llama.cpp](https://github.com/ggml-org/llama.cpp) (ggml-org)
|
| 200 |
+
- Vision projector (`mmproj`): inherited from Qwen3.5-9B (vision tower unchanged); F16 GGUF re-hosted with thanks to [Unsloth](https://huggingface.co/unsloth) for the original conversion
|
| 201 |
- HF model: [empero-ai/Qwythos-9B-Claude-Mythos-5-1M](https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M)
|