What Runs on Your Phone (2026)
| Phone class | Models (Q4_K_M) | Typical speed |
|---|---|---|
| 2026 flagship (Snapdragon 8 Elite+, A18 Pro+, Tensor G5) | Qwen3.5-4B, Gemma 4 E4B, SmolLM3-3B | 10–25 t/s (3–4B) · 30–50 t/s (1–2B) |
| Mid-range 2024–26 (NPU, 8GB RAM) | SmolLM3-3B, Qwen3-1.7B, LFM2.5-1.2B | 10–20 t/s |
| Older phones (CPU-only, 6GB) | Qwen3-0.6B, Phi-3-mini class | 5–15 t/s — basic chat only |
The models are the same ones covered in the sub-12B ranking — the phone just runs the smallest end of it. And the LFM2.5 family was designed for exactly this: 1.2B-Thinking fits under 1GB with real reasoning.
The Apps That Do It
- LM Studio Mobile — the easiest way: pick a model, download, chat. Full offline.
- Android + Termux: run Ollama or llama.cpp directly; full control, GGUF loading from local files.
- PocketPal-style runners — tiny apps for 0.5–1B models on modest hardware.
- Vendor on-device: Gemini Nano (Android) and Apple's on-device models (iOS) ship in the OS — limited but zero-setup.
- Whisper transcription apps — mature and excellent; see voice assistants for the full pattern.
For developers, the pattern is the same one from on-device app architecture: model in the app bundle or downloaded once, NPU delegate, local inference — no server.
What On-Device Models Are Good At (Honestly)
✅ Great
Offline chat & drafting, voice transcription + summaries, translation (Qwen covers Dari/Pashto — see the language guide), smart replies, note cleanup, and privacy-sensitive assistance.
⚠️ OK
Basic coding snippets, short document Q&A (keep context small), simple agents with one or two tools, and structured extraction from short text.
❌ Not yet
Long-document reasoning, complex multi-step agents, frontier-level math — and anything needing 32K+ context, where phone memory runs dry. Offload those to a desktop or server.
The Privacy Angle: Your Phone, Your Data
On-device is the privacy endpoint of the spectrum this blog covers — beyond local servers, beyond air gaps, because the device never even connects. For sensitive personal data, a phone-local model is the strongest available posture short of not using AI at all. It's also the practical version: your phone goes everywhere, and the model goes with it, offline.
The trade-off is honest: 3B models are not frontier models. The open-vs-closed gap is smaller than ever, but on a phone you feel it. Choose on-device for privacy and availability; choose cloud for peak capability.
Frequently Asked Questions (FAQ)
Can my phone run an LLM?
Yes — modern phones (iPhone 15 Pro+, flagship Androids with NPUs) run 1–4B models at 10–50 tokens per second. 2026 flagship phones handle 3–4B models comfortably; older phones are limited to 1B-class. Apps like LM Studio and LocalAI-style runners make it a few taps.
What is the best model for a phone?
The 2026 sweet spot: Qwen3.5-4B and Gemma 4 E4B on flagship phones, SmolLM3-3B and Qwen3-1.7B for mid-range, and LFM2.5-1.2B-Thinking for reasoning under 1GB. All quantized to Q4_K_M. Download each app's supported list before assuming compatibility.
How fast is on-device inference on a phone?
NPU-accelerated 1–2B models run 30–50 t/s on 2026 flagships; 3–4B models run 10–25 t/s. Without NPU support (CPU-only), expect roughly half that. Speech-to-text (Whisper-small) runs faster than real-time on most modern phones.
What can I actually do with an on-device LLM?
Offline chat and drafting, voice transcription and summaries, translation (Dari/Pashto included via Qwen), smart replies, note summarization, and privacy-sensitive assistance. The constraints: short context, no huge documents, and no frontier-level reasoning.
Are there apps that run local LLMs on phones?
Yes — in 2026 the common options are LM Studio Mobile, Ollama-compatible runners (via Termux on Android), PocketPal-style apps, and vendor options like Gemini Nano (Android) and Apple's on-device models (iOS). Whisper apps for transcription are mature.
Does on-device AI drain the battery?
NPUs are extremely efficient — a short chat session uses far less power than a video call, and much less than a cloud round trip (which also burns radios + servers). Long generation runs do draw power, so keep big jobs short or plugged in.
Sources & Further Reading
- On-Device AI Apps: Architecture Patterns That Work
- Voice Assistants You Can Build with Local AI
- Top 10 AI Models Under 12B Parameters
- LFM Models: Liquid Foundation Models Explained
- Data Privacy vs Cloud AI: The Real Risks in 2026
- Pashto and Dari in AI: What Works in 2026
- How to Speed Up Local LLMs: CPU vs GPU vs NPU