This is Ling 2.6 Flash by inclusionAI — a 35B-parameter Mixture-of-Experts model with 256 routed experts (8 active per token) + 1 always-active shared expert, hybrid MLA + Lightning Linear-Attention architecture, native English + Chinese, 131K context.
The JANGTQ2 variant is smaller and scores higher on both benchmarks — quant noise on the 2-bit routed experts ends up helping rather than hurting.
Usage
python
1from mlx_lm import load, generate
23model, tokenizer = load("dealignai/Ling-2.6-flash-MXFP4-CRACK")45messages =[{"role":"user","content":"Hello — what can you do?"}]6prompt = tokenizer.apply_chat_template(7 messages, tokenize=False, add_generation_prompt=True8)9print(generate(model, tokenizer, prompt=prompt, max_tokens=400, verbose=True))
mlx_lm >= 0.20 with bailing_hybrid model class is required.
About This Model
Ling 2.6 Flash is the latency-tier sibling in the Ling 2.6 family — fast multilingual instruction-follow + tool use. The chat template includes a <think>...</think> reasoning block, but in practice this Flash variant is best treated as a non-reasoning instruct model: leave thinking OFF (the default) for benchmark-style work and short-form responses. For chain-of-thought reasoning prefer the larger Ling 2.6 Plus / Ring / Pro tier.
CRACK is a permanent weight-level abliteration that removes safety refusal from the always-active residual-stream writers. Multilingual (EN + ZH) refusal direction extraction means the model complies on both English and Chinese prompts. The vision tower (none here — Ling 2.6 Flash is text-only) and MoE routing/expert internals are untouched.
Support dealignai
All models are built from original research and published for free.
Support us on Ko-fi — check out the Ko-fi membership for early access and extras.
This model has had its safety refusal circuits removed. It will produce responses that would normally be refused, including technical content on security testing, dual-use research, and sensitive topics. You are responsible for how you use it.
The CRACK abliteration process does not add new capabilities — it only removes the model's learned refusal patterns. All knowledge, including the knowledge used to produce unsafe outputs, was already present in the base Ling model.