Instructions to use mlx-community/Qwen-AgentWorld-35B-A3B-oQ4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use mlx-community/Qwen-AgentWorld-35B-A3B-oQ4 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("mlx-community/Qwen-AgentWorld-35B-A3B-oQ4") 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 mlx-community/Qwen-AgentWorld-35B-A3B-oQ4 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/Qwen-AgentWorld-35B-A3B-oQ4"
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/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/Qwen-AgentWorld-35B-A3B-oQ4" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use mlx-community/Qwen-AgentWorld-35B-A3B-oQ4 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "mlx-community/Qwen-AgentWorld-35B-A3B-oQ4"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "mlx-community/Qwen-AgentWorld-35B-A3B-oQ4" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mlx-community/Qwen-AgentWorld-35B-A3B-oQ4", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use mlx-community/Qwen-AgentWorld-35B-A3B-oQ4 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/Qwen-AgentWorld-35B-A3B-oQ4"
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/Qwen-AgentWorld-35B-A3B-oQ4
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mlx-community/Qwen-AgentWorld-35B-A3B-oQ4 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/Qwen-AgentWorld-35B-A3B-oQ4"
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/Qwen-AgentWorld-35B-A3B-oQ4" \ --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"
Qwen-AgentWorld-35B-A3B-oQ4
oQ4 (data-driven mixed-precision, ≈4.6 bpw) MLX quantization of
Qwen/Qwen-AgentWorld-35B-A3B,
produced with oMLX's quantize_oq_streaming.
For Apple Silicon. Runs in mlx-lm, oMLX, or any MLX app. Siblings:
oQ3.5
(smaller/faster, ≈3.5 bpw) and
bf16 (full precision).
Notes
- Text-only. The base checkpoint declares a
vision_configand MTP heads inconfig.json, but ships no vision ormtp.*weights (693 tensors, 0 vision, 0 MTP) — both are vestigial skeleton inherited from the Qwen3.5 base. This quant is the faithful language model; nothing multimodal was dropped. - ≈19 GB on disk (from ≈69 GB bf16). Peak memory ≈20 GB generating.
- Mixed-precision: per-layer bit allocation from oQ's sensitivity measurement; most weights are 4-bit-class with sensitive layers boosted.
Performance
Measured with oMLX (Auto engine) on an M5 Max (40-core GPU, 128 GB RAM). Single request:
| Context (pp/tg) | TTFT | decode | prefill | peak mem |
|---|---|---|---|---|
| 1024 / 128 | 463 ms | 136 tok/s | 2213 tok/s | 20.1 GB |
| 4096 / 128 | 1.18 s | 129 tok/s | 3469 tok/s | 20.8 GB |
| 8192 / 128 | 2.19 s | 125 tok/s | 3733 tok/s | 21.2 GB |
| 32768 / 128 | 11.5 s | 111 tok/s | 2844 tok/s | 23.2 GB |
Continuous batching (pp1024/tg128): 1×→136 · 2×→181 · 4×→252 · 8×→325 tok/s aggregate decode (2.40× at 8 concurrent requests).
Reference: BF16 source
Same setup, full-precision Qwen/Qwen-AgentWorld-35B-A3B:
| Context (pp/tg) | TTFT | decode | prefill | peak mem |
|---|---|---|---|---|
| 1024 / 128 | 644 ms | 77 tok/s | 1591 tok/s | 65.6 GB |
| 4096 / 128 | 1.68 s | 76 tok/s | 2434 tok/s | 66.4 GB |
| 8192 / 128 | 2.39 s | 75 tok/s | 3428 tok/s | 66.7 GB |
| 32768 / 128 | 12.0 s | 67 tok/s | 2730 tok/s | 68.7 GB |
Takeaway: oQ4 gives ≈1.8× the single-request decode throughput at ≈⅓ the memory (20 GB vs 66 GB), and scales to 2.40× under 8-way batching.
Accuracy (quick reference)
A quick, non-representative sanity check — 100-question samples per benchmark with thinking enabled, run via oMLX's accuracy bench. Not enough to draw firm conclusions, but it gives a rough idea of quality retention across precisions.
| Benchmark | BF16 | oQ4 | oQ3.5 |
|---|---|---|---|
| MathQA | 85.0% | 84.0% | 83.0% |
| MMLU-Pro | 76.0% | 77.0% | 72.0% |
At this sample size oQ4 tracks the BF16 source within ≈1 pp (it even edges it on MMLU-Pro — noise at 100 questions).
Usage
mlx_lm.generate --model mlx-community/Qwen-AgentWorld-35B-A3B-oQ4 \
--system-prompt "You are a language world model simulating a Linux terminal. Given the user's command, predict the terminal output." \
--prompt $'Action: execute_bash\nCommand: ls -la /home/user/project/' \
--max-tokens 512 --temp 0.6
The model uses thinking mode (<think>...</think>) by default. Recommended
sampling: temperature=0.6, top_p=0.95, top_k=20. See the
base model card for the
seven agent domains and domain-specific system prompts.
- Downloads last month
- 810
4-bit
Model tree for mlx-community/Qwen-AgentWorld-35B-A3B-oQ4
Base model
Qwen/Qwen3.5-35B-A3B-Base