An 8-bit MLX build of
GnLOLot/MiniCPM5-1B-Claude-Opus-Fable5-Thinking, repacked so it runs natively and fast on Apple Silicon through
mlx-lm. Same weights — just quantized to 8-bit and converted to MLX. Nothing else touched.
It's a 1B model. Squeeze one this small down to 4-bit and it starts making the kind of careless mistakes that make you close the tab — and you'd only save about 400 MB doing it. 8-bit comes out to ~1.1 GB, stays effectively lossless, and still decodes north of 100 tok/s on an M4 Pro. For a model whose whole appeal is being tiny and quick on-device, that's the trade that actually makes sense.
1from mlx_lm import load, generate
2
3model, tok = load("gtoxlili/MiniCPM5-1B-Claude-Opus-Fable5-Thinking-MLX-8bit")
4
5prompt = tok.apply_chat_template(
6 [{"role": "user", "content": "Reverse a string in Python."}],
7 add_generation_prompt=True,
8 enable_thinking=True, # set False to skip the <think> block and get a straight answer
9)
10print(generate(model, tok, prompt, max_tokens=512))
One billion parameters, so keep your expectations honest. It's genuinely pleasant for quick on-device chat, drafting, small coding nudges, and watching a little model reason out loud — and it will also state wrong things with complete confidence. Great as the always-on local assistant you keep in a terminal or wired into a Telegram bot; not something to put on the critical path.
License is Apache-2.0, inherited from the base.