Instructions to use mlx-community/Qwythos-9B-v2-OptiQ-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use mlx-community/Qwythos-9B-v2-OptiQ-4bit with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("mlx-community/Qwythos-9B-v2-OptiQ-4bit") config = load_config("mlx-community/Qwythos-9B-v2-OptiQ-4bit") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use mlx-community/Qwythos-9B-v2-OptiQ-4bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Qwythos-9B-v2-OptiQ-4bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mlx-community/Qwythos-9B-v2-OptiQ-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mlx-community/Qwythos-9B-v2-OptiQ-4bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Qwythos-9B-v2-OptiQ-4bit"
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 mlx-community/Qwythos-9B-v2-OptiQ-4bit
Run Hermes
hermes
- OpenClaw new
How to use mlx-community/Qwythos-9B-v2-OptiQ-4bit with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/Qwythos-9B-v2-OptiQ-4bit"
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 "mlx-community/Qwythos-9B-v2-OptiQ-4bit" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
mlx-community/Qwythos-9B-v2-OptiQ-4bit
Built with mlx-optiq, the MLX-native toolkit to quantize, fine-tune, and serve LLMs locally on Apple Silicon, no PyTorch and no cloud. Try the Lab · All OptiQ quants · Docs
A 4-bit mixed-precision MLX quant of empero-ai/Qwythos-9B-v2, a reasoning-tuned Qwen3.5-9B derivative. Per-layer bit-widths come from a KL-divergence sensitivity pass on a six-domain calibration mix (prose, reasoning, code, agent, tool-call, and constraint-bearing instructions). Sensitive layers go to 8-bit; robust ones stay at 4-bit.
Image input works. The vision tower is kept at bf16 in a sidecar, so this quant takes images as well as text.
Quantization details
| Property | Value |
|---|---|
| Predominant precision | 4-bit |
| Layers at 8-bit (sensitive) | 134 |
| Layers at 4-bit (robust) | 114 |
| Total quantized layers | 248 |
| Achieved bits per weight | 5.211 |
| Group size | 64 |
| Calibration mix | six-domain mix |
| Reference for sensitivity | uniform-4-bit |
| Vision tower | bf16, 333 tensors, in optiq/optiq_vision.safetensors |
| Bundled MTP head | optiq/mtp.safetensors (4-bit projections, BF16 norms) |
| Size on disk | 7.6 GB (language 6.6 GB, sidecars 1.0 GB), from an 18 GB bf16 base |
We follow the same naming convention llama.cpp uses for Q4_K_M and similar mixed-precision quants: the "4-bit" label is the predominant precision, not the weighted average.
Only the language tower is quantized. The vision tower stays at bf16, which is how every OptiQ VLM ships: it is a small fraction of the weights, so quantizing it costs quality for very little disk.
Usage
Text
Load it with mlx-lm and use it as usual. The sidecars live in an optiq/ subfolder, so a stock *.safetensors glob ignores them and mlx-lm sees a clean language model.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/Qwythos-9B-v2-OptiQ-4bit")
response = generate(
model, tokenizer,
prompt="Explain quantum computing in simple terms.",
max_tokens=512,
)
This is a reasoning model: it thinks inside <think>...</think> before answering, so give it enough max_tokens to finish.
Images
Image input needs mlx-optiq, which loads the bf16 vision sidecar and feeds the merged embeddings to the quantized language tower:
pip install mlx-optiq
from PIL import Image
from optiq.runtime.engine import OptiqEngine
engine = OptiqEngine("mlx-community/Qwythos-9B-v2-OptiQ-4bit")
answer = engine.generate(
"What is in this image?",
images=[Image.open("photo.jpg")],
max_tokens=512,
)
print(answer.text)
Or serve it over an OpenAI-compatible endpoint that accepts image content parts:
optiq serve --model mlx-community/Qwythos-9B-v2-OptiQ-4bit
Speculative decoding (MTP)
The base ships a Multi-Token Prediction head, bundled here as optiq/mtp.safetensors:
optiq serve --model mlx-community/Qwythos-9B-v2-OptiQ-4bit --mtp
Provenance
Produced with optiq convert empero-ai/Qwythos-9B-v2 --target-bpw 5.0 --reference uniform_4bit. The recipe matches mlx-community/Qwen3.5-9B-OptiQ-4bit, the quant of the base architecture this model is tuned from, which lands at the same bits per weight.
Text and image generation were both verified on the finished artifact before release. No task benchmarks were run on this quant; for measured quality numbers on the base architecture, see the Qwen3.5-9B OptiQ card.
Quantization does not change the alignment characteristics of the base model. Use it under the same terms as the original.
- Downloads last month
- -
4-bit
Model tree for mlx-community/Qwythos-9B-v2-OptiQ-4bit
Base model
Qwen/Qwen3.5-9B-Base