What are you actually building with 50M–150M parameter models? Looking for use cases beyond code completion.
What are the most practical, real-world use cases for micro-LLMs in the 50M–150M range?
We all know the standard examples:
- Local Code Autocomplete: Fast, offline inline completions in your editor.
- On-Device Apps: Privacy-first micro-models embedded in mobile/desktop apps so data stays local.
- Research/Learning: Low-cost testbeds to run, inspect, and tweak training dynamics on a basic laptop.
But at 100M parameters, a model stops being a general-purpose chatbot and acts more like a sub-millisecond utility function. A few other architectures I've been thinking about:
- Speculative Decoding Draft Engines: Paired with an 8B+ model to speed up local token generation by 2–3x.
- Deterministic Tool & JSON Parsers: Fine-tuned strictly on JSON schemas to map natural language to local system API calls.
- Semantic Routers: Acting as a lightning-fast gatekeeper that classifies intent and routes queries to specific scripts or larger models.
- Log & Telemetry Monitors: Running in a background daemon to parse local logs or terminal outputs for anomalies in real time.
What other clever edge, workflow, or infrastructure use cases am I missing? What are you running at this scale?