SLM Daily #11: the first model we skipped for a reason that isn't in our own rulebook

August 13, 2026 · 4 min read

Four catalog candidates crossed our desk since SLM Daily #10. Zero got added — same outcome as last edition, but for a genuinely new reason this time. LiquidAI's LFM2.5-VL-3B, released August 12, clears every rule we've ever published: supported architecture, reputable quantizer, phone-sized file, a license we already ship under. It still doesn't go in the catalog, because we grepped our own app and found there's no code anywhere that ever hands a model a photo.

What we checked and rejected

  • LFM2.5-VL-3B (Liquid AI, released August 12) — a 3.1B-parameter vision-language model: the LFM2.5-2.6B text backbone already in our catalog, plus a SigLIP2 NaFlex vision encoder bolted on. bartowski's Q4_K_M quant is 1,684,023,328 bytes (1.68 GB) — we HEAD-checked the URL ourselves and got that exact content-length back, not a rounded UI figure. The lfm2 architecture tag is confirmed present in llama.cpp mainline (we diffed src/llama-arch.cpp directly). License is the same LFM Open License v1.0 our existing lfm2.5-2.6b-q4 entry already ships under. Every box ticked — and it's still not going in. Reason: this app has zero image-input UI (no camera button, no photo picker, nothing in ChatView.swift) and LlamaEngine.swift loads exactly one GGUF via llama_model_load_from_file, with no clip_model_load or mmproj call anywhere in the codebase. The model's entire reason for existing — the "VL" in its name — would be dead weight the moment it landed on a phone. We'd be shipping a vision model to an app that structurally cannot show it a picture. That's not an architecture gate or a license problem; it's a product gap our own catalog rules never wrote a line for, so we're writing one now: a VL model doesn't qualify until the app can actually feed it an image.
  • Meta Muse-Glimmer-30B (released August 10) — dense 30B, Apache-2.0, muse-glimmer architecture confirmed present in llama.cpp mainline. bartowski's Q4_K_M is roughly 17.3 GB — about 7x over our 2.5 GB phone-friendly cap, at any quant that still resembles Q4. It's real, it's good, and it's the exact model our Edge in the Wild spotlight below is running today, on hardware built for a file this size. Not this catalog.
  • NVIDIA Nemotron 3.5 Lightning 30B-A3B (released August 11) — hybrid Mamba-2/MoE/Attention, 3B active parameters out of 30B total, OpenMDW-1.1 license (NVIDIA's own card calls it explicitly "ready for commercial and non-commercial use"). nemotron_h_moe is confirmed present in llama.cpp mainline. The active-parameter count is the headline NVIDIA leads with, and it's genuinely small at inference time — but the file on disk still has to hold every expert whether or not a given token routes through it. bartowski's Q4_K_M comes out to roughly 25.5 GB. "3B active" is a compute story, not a download-size one.
  • Cactus Needle2 (Cactus Compute, last updated on Hugging Face August 12) — genuinely tiny: 45M parameters, a single 14 MB binary, ~28 MB peak session RAM, Apache-2.0. We checked the license tag on the model card ourselves. It fails the gate for a reason none of our other rejections this year have: it isn't a GGUF at all. It's a custom 2-bit format ("Cactus Quants") baked into its own dependency-free engine, installed via pip install cactus-needle, with no llama.cpp architecture tag to even check against. Interesting to watch — it's benchmarked against FunctionGemma-270M and Apple's on-device Foundation Model at 5–70x smaller — but there's no version of "add it to our catalog" that means anything while our engine only speaks GGUF.

The catalog now

Still 22 models, unchanged since SLM Daily #8 added LFM2.5-2.6B on August 6. Same standing caveat as last time: 8 of the 22 are the generalist tier we hold to a cap, the other 14 are pre-cap specialist entries (medical, legal, finance and similar) we haven't unilaterally pulled from a catalog people are actively downloading from.

Also this edition

Our deep-dive checks what "tokens per second" on a phone actually means once you look past the first reply — the number in every model card, including LFM2.5-VL-3B's own, turns out to describe a device state that survives about four seconds. Read it here. And an Edge in the Wild spotlight on Samuel Alexander running Muse-Glimmer-30B — the model we just skipped above for being 7x over our size cap — doing real visual PCB inspection on a Qualcomm Dragonwing IQ-9075, at 91% of the board's peak memory bandwidth. Read it here.

Discuss this on the forum →