THE ANDROID AI RUNTIME

AI that runs on your phone.

EdgeLM runs language models directly on your device — private, offline, and shared by every app. Download a model once; any EdgeLM-powered app can use it.

No cloud · no account · no tracking · works offline

0on-device decode speed
0models to choose from
0private & offline
WHY EDGELM

On-device by default.

Most AI apps send your words to a server. EdgeLM keeps everything on the phone — faster, private, and free of per-request cloud costs.

🔒

Private by design

Your prompts and the AI's replies never leave your device. No cloud, no account, no tracking, no ads.

✈️

Works offline

Once a model is downloaded, EdgeLM runs with no internet at all — on a plane, in a tunnel, anywhere.

Shared & efficient

One model, loaded once and served to every app — so a second app adds almost no extra memory.

No cloud cost

Nothing to pay per request and no network round-trips. The compute you already own does the work.

HOW IT WORKS

Three taps to on-device AI.

EdgeLM guides you through setup and recommends the right model for your phone.

Install EdgeLM Runtime

A quick welcome explains how on-device AI keeps your data private.

Pick an AI

EdgeLM suggests the best model for your phone — one tap to download. Power users can switch to Advanced for the full catalog.

Use it

Try it instantly in the built-in playground. Any EdgeLM-powered app on your phone can now use AI.

A LOOK INSIDE

Simple to start, powerful when you want it.

Plain-language by default — download the recommended model and chat. Full model details and controls are one tap away in Advanced.

The right AI for your phone Chat privately, on your device Choose your assistant Fast, and fully offline Full control when you want it
CHOOSE YOUR MODEL

A model for every phone.

From tiny-and-fast to more capable — each shown in plain language with its size and what it's best for, and a warning if your phone may not have enough memory. Keep several installed and switch instantly.

Quick Assistant
Qwen2.5 0.5B · Fastest

Fast and light — quick questions and short replies on any phone.

Everyday Assistant
Llama 3.2 1B · Balanced

A well-rounded helper for chatting, writing, and summarizing.

Smart Assistant
Qwen2.5 1.5B · Smarter

Sharper answers and better with other languages.

Pro Assistant
Llama 3.2 3B · Capable

Higher-quality writing and thinking. Best on newer phones.

Expert Assistant
Phi-3.5 mini · Most capable

Best for tricky questions, math, and coding help.

FOR DEVELOPERS

On-device AI in a few lines.

EdgeLM is a shared runtime — your app calls it instead of bundling and managing model weights. Add the SDK and stream tokens with an OpenAI-style API.

// build.gradle
implementation("ai.edgelm:sdk:0.1.0")

// stream a reply — runs entirely on device
EdgeLM.chat(
    prompt = "Explain on-device AI",
    sessionId = "chat-1"
) { token -> append(token) }

// graceful if the runtime isn't installed
EdgeLM.promptInstall(context)
  • One shared model across every app — no per-app weights, minimal extra memory.
  • Permission-gated — apps request access; the runtime serves them by priority.
  • Streaming + sessions — token callbacks and multi-turn context out of the box.
  • OpenAI-compatible HTTP shim for local tools during development.
Full integration guide →

Bring AI on-device.

Private, offline, shared by every app. Now on Google Play.