Instructions to use groxaxo/qwen36-reap-2k-mlx-q8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use groxaxo/qwen36-reap-2k-mlx-q8 with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("groxaxo/qwen36-reap-2k-mlx-q8") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use groxaxo/qwen36-reap-2k-mlx-q8 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "groxaxo/qwen36-reap-2k-mlx-q8"
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": "groxaxo/qwen36-reap-2k-mlx-q8" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use groxaxo/qwen36-reap-2k-mlx-q8 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 "groxaxo/qwen36-reap-2k-mlx-q8"
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 groxaxo/qwen36-reap-2k-mlx-q8
Run Hermes
hermes
- OpenClaw new
How to use groxaxo/qwen36-reap-2k-mlx-q8 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "groxaxo/qwen36-reap-2k-mlx-q8"
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 "groxaxo/qwen36-reap-2k-mlx-q8" \ --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 LM
How to use groxaxo/qwen36-reap-2k-mlx-q8 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "groxaxo/qwen36-reap-2k-mlx-q8"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "groxaxo/qwen36-reap-2k-mlx-q8" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "groxaxo/qwen36-reap-2k-mlx-q8", "messages": [ {"role": "user", "content": "Hello"} ] }'
qwen36-reap-2k-mlx-q8
The same model from the story — the one that grew up on the filtered public internet, pruned but whole, with one chapter of structured-reasoning traces folded into its final layer — here pressed into a lighter form.
Where the bf16 release carries every weight at full precision, this is the 8-bit reading: the text and mixture-of-experts weights quantized to 8-bit affine (group size 64), the embeddings and output projection kept at full bf16 so the vocabulary stays sharp, and the vision tower preserved exactly as in the source — bit for bit, untouched by the compression. It thinks the same thoughts; it just carries them in a smaller satchel.
Built by fusing the rank-four LoRA into the base and quantizing in a single pass, so no precision was lost to an intermediate round-trip. Higher fidelity than the 4-bit release, lighter than full precision — for when you want the model's best foot forward without paying for the whole library.
Technical details
- Base:
RangerX-Qwen3.6-35B-REAP-Pruned-ratio-0.5— Qwen3.6 35B MoE (128 experts, 8 active), REAP-pruned at ratio 0.5, multimodal (text + vision) - Precision: text/MoE weights 8-bit affine (group_size 64);
embed_tokensandlm_headkept at bf16; vision tower bf16 (preserved bit-identical from source) - ~8.9 bits per weight overall
- Adapter: LoRA, rank 4, scale 8.0, last full-attention layer only (layer 39), 300 iterations at lr 1e-5
- Merge: adapter fused via
mlx_lmfuse(), then quantized in the same pass; vision tower re-attached verbatim - Architecture: 40 layers (every 4th is
full_attention, restlinear_attention), hidden size 2048, 16 attention heads, MRoPE
Verification
- Loads strictly under
mlx_lm0.31.3 with zero missing or unexpected weights (full multimodal: text + vision) - Built via the same fuse + quantize pipeline as the verified-working Q4 release
Note on generation testing
Generation was not verified on the build machine (24 GB unified memory): the Q8 weights (~20 GB) plus vision tower exceed available GPU memory at runtime. The model strict-loads cleanly and the weights are produced by the same proven fuse + quantize path as the Q4 (which generates correctly). Verify generation on a host with ≥ 32 GB unified memory.
- Downloads last month
- 327
8-bit