Text Generation
MLX
Safetensors
hy_v3
optiq
quantized
2bit
mixed-precision
Mixture of Experts
ssd-streaming
apple-silicon
conversational
4-bit precision
Instructions to use mlx-community/Hy3-OptiQ-2bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use mlx-community/Hy3-OptiQ-2bit 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/Hy3-OptiQ-2bit") 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/Hy3-OptiQ-2bit 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/Hy3-OptiQ-2bit"
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/Hy3-OptiQ-2bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use mlx-community/Hy3-OptiQ-2bit 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/Hy3-OptiQ-2bit"
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/Hy3-OptiQ-2bit" \ --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 mlx-community/Hy3-OptiQ-2bit 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/Hy3-OptiQ-2bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "mlx-community/Hy3-OptiQ-2bit" # 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/Hy3-OptiQ-2bit", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use mlx-community/Hy3-OptiQ-2bit 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/Hy3-OptiQ-2bit"
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/Hy3-OptiQ-2bit
Run Hermes
hermes
| license: apache-2.0 | |
| library_name: mlx | |
| inference: false | |
| pipeline_tag: text-generation | |
| base_model: tencent/Hy3 | |
| tags: | |
| - mlx | |
| - optiq | |
| - quantized | |
| - 2bit | |
| - mixed-precision | |
| - moe | |
| - ssd-streaming | |
| - apple-silicon | |
| - text-generation | |
| # mlx-community/Hy3-OptiQ-2bit | |
| > **Built with [mlx-optiq](https://mlx-optiq.com)**, the MLX-native toolkit to quantize, fine-tune, and serve LLMs locally on Apple Silicon, no PyTorch and no cloud. [All OptiQ quants](https://mlx-optiq.com/models) · [Docs](https://mlx-optiq.com/docs/) | |
| **A 295-billion-parameter model that runs in 7.6 GB of RAM on a Mac.** This is a 2-bit mixed-precision MLX quant of [tencent/Hy3](https://huggingface.co/tencent/Hy3), produced by [mlx-optiq](https://mlx-optiq.com/). It is 88 GB on disk, and while the model generates only about 7.6 GB sits in RAM: attention, the router, the shared expert and the embeddings stay resident, and the 192 routed experts are read off the SSD as the router picks them. | |
| ## What it is | |
| | Property | Value | | |
| |---|---| | |
| | Base | [tencent/Hy3](https://huggingface.co/tencent/Hy3) (sparse MoE, 192 experts, 8 active per token, 80 layers) | | |
| | Parameters | 295 B | | |
| | Bit-widths | 2-bit routed experts; 6-bit attention; 8-bit shared expert, embeddings and LM head | | |
| | Achieved bits-per-weight | 2.39 | | |
| | On disk | 88 GB | | |
| | Resident while running | ~7.6 GB (routed experts streamed) | | |
| No Capability Score is published for this quant. Running the six-benchmark suite against a model that decodes off SSD would take days, and at 2 bits on the routed experts the point of the artifact is different: that a 295 B MoE runs at all on consumer Apple Silicon. | |
| ## Run it | |
| Hy3 is not an architecture stock mlx-lm knows, so `import optiq` once to register it: | |
| ```bash | |
| pip install "mlx-optiq>=0.4.15" | |
| ``` | |
| The routed experts are far too large to sit resident, so serve it with SSD expert streaming. `optiq serve` turns this on by itself for a MoE quant that would not fit in RAM (`--stream-experts` forces it): | |
| ```bash | |
| optiq serve --model mlx-community/Hy3-OptiQ-2bit | |
| ``` | |
| That gives you an OpenAI and Anthropic compatible endpoint with mixed-precision KV cache, tool-call healing and prompt caching. Only the routed experts stream per token, so the footprint stays near 7.6 GB regardless of how large the model on disk is. | |
| A fast SSD matters more than RAM here. Every token reads 8 experts per layer from disk, so decode speed tracks read throughput. | |
| ## Notes | |
| This is an **extreme quant.** Two bits on the routed experts is lossy, and anything where accuracy matters should use the bf16 weights or a higher-bit quant. What this one demonstrates is a model of this size running on a Mac, at a resident footprint that fits a 16 GB machine. | |
| ## Links | |
| - **Project website:** [mlx-optiq.com](https://mlx-optiq.com/) | |
| - **All OptiQ quants:** [mlx-optiq.com/models](https://mlx-optiq.com/models) | |
| - **PyPI:** [pypi.org/project/mlx-optiq](https://pypi.org/project/mlx-optiq/) | |
| - **Base model:** [tencent/Hy3](https://huggingface.co/tencent/Hy3) | |