Instructions to use Vontra/Ling-3.0-flash-MLX-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use Vontra/Ling-3.0-flash-MLX-4bit 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("Vontra/Ling-3.0-flash-MLX-4bit") 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 Vontra/Ling-3.0-flash-MLX-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 "Vontra/Ling-3.0-flash-MLX-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": "Vontra/Ling-3.0-flash-MLX-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use Vontra/Ling-3.0-flash-MLX-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 "Vontra/Ling-3.0-flash-MLX-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 "Vontra/Ling-3.0-flash-MLX-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 LM
How to use Vontra/Ling-3.0-flash-MLX-4bit with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "Vontra/Ling-3.0-flash-MLX-4bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "Vontra/Ling-3.0-flash-MLX-4bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vontra/Ling-3.0-flash-MLX-4bit", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use Vontra/Ling-3.0-flash-MLX-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 "Vontra/Ling-3.0-flash-MLX-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 Vontra/Ling-3.0-flash-MLX-4bit
Run Hermes
hermes
Ling 3.0 Flash — MLX 4-bit
A native Apple-silicon conversion of inclusionAI/Ling-3.0-flash, quantized with the stock MLX-LM converter and packaged for MLX-LM and oMLX.
Original model · InclusionAI on ModelScope · OpenRouter
About this conversion
This repository contains a 4-bit affine MLX conversion of Ling 3.0 Flash. Ling is a 124B-parameter hybrid-linear mixture-of-experts model with approximately 5.1B active parameters per token. The conversion preserves the upstream tokenizer and chat template and includes an MLX architecture adapter for the model's KDA, MLA, and sparse-MoE layers.
| Item | Value |
|---|---|
| Base model | inclusionAI/Ling-3.0-flash |
| Format | MLX safetensors |
| Quantization | 4-bit affine, group size 64 |
| Converter | Stock mlx_lm.convert from MLX-LM 0.31.3 |
| Effective weight precision | 4.502 bits per weight |
| Repository size | 70.03 GB (65.22 GiB) |
| Maximum configured context | 262,144 tokens |
| Architecture | bailing_hybrid |
This model includes the custom architecture file
bailing_hybrid.py. Review the file and enable Trust Remote Code before loading it. In oMLX, enable Trust Remote Code in the model settings. With MLX-LM, pass--trust-remote-code.
Apple-silicon validation
The converted weights were loaded strictly with both stock MLX-LM and the MLX runtime bundled with oMLX. End-to-end generation was also tested through the oMLX OpenAI-compatible API on an Apple-silicon Mac Studio.
One short local smoke test produced:
| Measurement | Result |
|---|---|
| Prefill | 21.38 tokens/s |
| Decode | 76.41 tokens/s |
| Reported peak memory | 70.18 GB |
| oMLX API | HTTP 200, valid completion |
These figures confirm that the model runs; they are not a controlled benchmark. Prompt length, sampler settings, macOS memory pressure, thermal state, and MLX/oMLX versions can materially change performance.
Quick start with MLX-LM
Install recent MLX-LM and Hugging Face tooling:
python -m pip install -U mlx-lm huggingface_hub
Run a chat prompt directly from the Hub:
mlx_lm.generate \
--model Vontra/Ling-3.0-flash-MLX-4bit \
--trust-remote-code \
--prompt "Explain why hybrid linear attention is useful." \
--max-tokens 512 \
--temp 0.6 \
--top-p 0.95 \
--top-k 20
Thinking mode is enabled by the upstream chat template by default. It can be disabled with:
mlx_lm.generate \
--model Vontra/Ling-3.0-flash-MLX-4bit \
--trust-remote-code \
--chat-template-config '{"enable_thinking": false}' \
--prompt "Write a short hello-world program in Swift."
To download the repository first:
hf download Vontra/Ling-3.0-flash-MLX-4bit \
--local-dir ~/.omlx/models/Vontra/Ling-3.0-flash-MLX-4bit
Using it with oMLX
- Place the model at
~/.omlx/models/Vontra/Ling-3.0-flash-MLX-4bit. - Refresh the oMLX model registry.
- Open the model settings and enable Trust Remote Code.
- Load
Ling-3.0-flash-MLX-4bitand use the normal chat or OpenAI-compatible endpoint.
Example request:
curl http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OMLX_API_KEY" \
-d '{
"model": "Ling-3.0-flash-MLX-4bit",
"messages": [{"role": "user", "content": "Say hello from MLX."}],
"temperature": 0.6,
"top_p": 0.95,
"max_tokens": 128
}'
For long prompts, begin with a conservative context limit and increase it while watching memory pressure. The advertised 256K context is a model capability, not a promise that every host can prefill that context within its available unified memory.
Architecture
Ling 3.0 Flash is a native hybrid-linear MoE model. It alternates Kimi Delta Attention (KDA) and gated Multi-head Latent Attention (MLA) in a 5:1 ratio and uses highly sparse routed experts.
| Architecture detail | Upstream value |
|---|---|
| Total / active parameters | 124B / 5.1B |
| Transformer layers | 35 KDA + 7 gated MLA |
| Dense layers | 2 |
| Routed / shared experts | 512 / 1 |
| Active routed experts | 8 |
| Attention heads | 32 |
| Hidden size | 2,560 |
| Expert intermediate size | 768 |
| Dense intermediate size | 6,144 |
| Vocabulary size | 157,184 |
| Context training schedule | 8K → 32K → 256K |
The included MLX adapter uses MLX-LM's native primitives for delta attention, absorbed MLA projections, RoPE, and quantized SwitchGLU experts. The auxiliary MTP training head is intentionally excluded from ordinary causal generation; this release does not claim MTP/DSpark speculative decoding support.
Upstream model highlights
InclusionAI describes Ling 3.0 Flash as a next-generation hybrid reasoning model designed for efficient long-context inference and agentic workloads. The upstream release reports strong results across software-engineering agents, tool use, deep research, general knowledge, mathematical reasoning, instruction following, and long-context understanding.
The upstream defaults are:
thinking: enabled
temperature: 0.6
top_p: 0.95
top_k: 20
For benchmark methodology, scores, limitations, and framework-specific SGLang/vLLM deployment instructions, see the original InclusionAI model card.
Conversion notes
- Source weights: BF16 upstream checkpoint.
- Conversion command: stock
mlx_lm.convertwith--quantize --q-bits 4 --q-group-size 64 --q-mode affine. - The upstream
chat_template.jinjais included unchanged. - All source tensors required for base causal generation were consumed by a strict load before conversion.
- The 42 base transformer layers are retained. The separate depth-5 MTP training/speculation stack is not part of this runtime adapter.
Four-bit weight quantization materially reduces memory use but may reduce output quality relative to BF16 or the 8-bit conversion.
This is a community conversion, not an official InclusionAI release. Because the architecture adapter is new, validate quality and numerical behavior on your own representative workload before production use.
License and attribution
The upstream model is released under the MIT License. This conversion preserves that license and is derived from inclusionAI/Ling-3.0-flash.
All model design, training, and benchmark credit belongs to InclusionAI and the original contributors. The MLX conversion and compatibility adapter are provided by Vontra.
- Downloads last month
- 175
4-bit
Model tree for Vontra/Ling-3.0-flash-MLX-4bit
Base model
inclusionAI/Ling-3.0-flash