Instructions to use PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16 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("PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16") 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 PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16"
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": "PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16 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 "PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16"
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 PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16
Run Hermes
hermes
- OpenClaw new
How to use PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16"
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 "PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16" \ --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 PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16", "messages": [ {"role": "user", "content": "Hello"} ] }'
Qwopus3.6 27B v2 MTPLX BF16
This is the full-precision BF16 MTPLX release of
Jackrong/Qwopus3.6-27B-v2,
pinned to source revision
d0d82f4ccc9d41d4fe9595e96be4595327bb5de7.
It packages the 26.896B-parameter language-model trunk in BF16 together with
the model's native BF16 multi-token-prediction (MTP) sidecar for speculative
decoding on Apple Silicon.
This is the BF16 master artifact used to derive smaller quantized builds. No body quantization is applied.
What MTPLX adds
The model includes mtp.safetensors and a verified MTP runtime contract.
MTPLX drafts multiple future tokens with the native MTP head, then verifies
them against the full model. The output distribution remains target-verified;
the MTP head is an inference accelerator, not a separate replacement model.
This package requires MTPLX 2.4.0 or newer for native MTP acceleration.
Stock mlx-lm does not consume the split MTP sidecar by itself.
Quick start
Install the runtime:
python3 -m pip install "mtplx==2.4.0"
Start the local OpenAI-compatible server with the verified settings:
mtplx quickstart \
--model PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16 \
--download \
--profile sustained \
--depth 2 \
--port 8000
PocketAI also supports this artifact through its managed MTPLX runtime. This BF16 release is very large: the repository is about 54.7 GB before runtime and KV-cache overhead. It was verified on a 128 GB Apple Silicon Mac; lower-memory configurations have not been qualified.
Verification
The release was forged and tested with MTPLX 2.4.0 on an Apple M5 Max with
128 GB unified memory. The sustained profile selected depth 2.
| Decode mode | Throughput | Relative to AR | Acceptance by MTP position |
|---|---|---|---|
| Autoregressive | 9.333 tok/s | 1.000x | — |
| MTP depth 1 | 11.835 tok/s | 1.268x | 96.62% |
| MTP depth 2 | 14.569 tok/s | 1.561x | 94.96%, 91.60% |
| MTP depth 3 | 12.409 tok/s | 1.330x | 94.41%, 86.01%, 76.92% |
These are single-machine forge-verification measurements, not universal
performance guarantees. Throughput varies with hardware, prompt length,
sampling settings, thermals, and runtime version. The complete structured
evidence is in mtplx_runtime.json.
Artifact layout
model-00001-of-00011.safetensors…model-00011-of-00011.safetensors— BF16 language-model trunkmodel.safetensors.index.json— trunk weight indexmtp.safetensors— BF16 native MTP sidecarmtplx_runtime.json— MTPLX contract, forge provenance, and verification evidence- tokenizer, template, and model configuration files
Scope and limitations
- This repository is the text-generation MTPLX artifact. It does not include the upstream vision tower/projector, so image input is not supported by this package.
- It is an experimental community model and has not received a comprehensive safety evaluation. Review outputs before using them in high-impact settings.
- Reasoning and tool-call behavior come from the upstream Qwopus model. See the upstream model card for its training description, datasets, intended use, and limitations.
License and attribution
Released under the Apache License 2.0, following the upstream model. This conversion/packaging release is maintained by PocketAiHub. MTPLX is developed by Youssof Altoukhi.
- Downloads last month
- 85
Quantized
Model tree for PocketAiHub/Qwopus3.6-27B-v2-MTPLX-BF16
Base model
Jackrong/Qwopus3.6-27B-v2