Blog · 2026-07-20
The AI Feature That Beat the Cloud: Inside Kakao Mobility's Decision
Most on-device AI arguments run on theory: it should be cheaper, it should be faster, it should be more private. Theory is easy to argue with. A production A/B test is not.
That is why the Kakao Mobility case - published as an official Google case study - is the single most useful public data point in mobile AI right now. It is the rare instance where a large product team ran cloud AI and on-device AI head-to-head on the same feature, in production, and published the business numbers behind the decision.
The setup
Kakao Mobility operates one of the largest mobility platforms in Asia - ride-hailing, taxis, delivery - with AI features in the order flow itself. The team had a working cloud implementation on Gemini and a candidate on-device implementation on Gemini Nano via the ML Kit Prompt API.
Instead of choosing on architecture-diagram aesthetics, they benchmarked both against each other. Four criteria: privacy, cost, accuracy, and speed.
On-device won all four.
The accuracy result is the one that surprises people. The assumption is that a small local model trades quality for privacy and cost. For this workload - structured, short-context tasks inside a known product domain - the device-scale model matched and beat the cloud path where it mattered, while answering without a network round-trip.
The results
The published outcomes are business metrics, not benchmark scores:
- Order completion time down 24%. Less friction in the core money-making flow.
- New-user conversion up 45%. The AI-assisted path onboards better than the manual one.
- Existing-user conversion up 6%.
- AI-assisted orders grew more than 200% during peak seasons - and, because inference runs on the customer's phone, that growth arrived with no matching growth in inference bills. Peak season is exactly when a cloud meter hurts most.
One scenario in the case study captures the privacy half: when a user shares a photo that contains location data, the analysis happens on the device. The sensitive data never travels anywhere. That is not a policy promise - it is an architectural property.
Why "faster AND cheaper" is not a typo
In most engineering decisions, cost and latency trade off against each other - you pay more to go faster. On-device inference breaks that trade-off for fitting workloads, for a physical reason: the round-trip disappears.
A cloud AI request pays network latency twice (up and back) plus queueing on shared infrastructure. A local model starts generating in milliseconds. For short tasks - the classify/extract/summarize layer that dominates real product traffic - a 3B model on the phone finishes before a frontier model's response has left the data center. And each of those local requests costs exactly $0 in marginal spend, at any volume.
That is why the Kakao result generalizes: it was not a heroic optimization. It is what the architecture does when the workload fits.
What to copy: the method, not the conclusion
The tempting takeaway is "on-device wins, move everything." That is the wrong lesson, and the Kakao team's actual method shows why.
They did not assume. They ran the comparison on their own workload and measured the four things that mattered to their product. Your workload is not their workload: your context sizes, your quality bar, your device fleet, and your traffic shape all move the answer. Sometimes the cloud wins - long documents, deep reasoning, and frontier-quality generation still live there, and a chunk of every real device fleet lacks the RAM for top local models.
The transferable checklist from this case:
- Pick one high-frequency feature, not the whole product. Kakao tested inside a specific flow.
- Build both paths. On Android, Firebase AI Logic routing makes the on-device/cloud split a configuration, not a fork of your codebase; on iOS, the LanguageModel protocol does the same.
- Benchmark on business metrics - completion time, conversion, retention - not on model-quality leaderboards. A model that is 5% "worse" on an academic eval and 400ms faster in the flow can be the better product decision.
- Let the numbers pick the architecture. Head-to-head beats intuition, whichever way it lands.
The honest footnote
Public cases like this are still rare, and it is fair to ask why. Regulated verticals - banks, insurers, healthcare - run their on-device pilots quietly; the strongest public evidence today comes from consumer platforms and privacy-forward products. When a company does publish, it is usually because the result was strongly positive, so treat any single case - including this one - as an existence proof, not a guarantee.
What the existence proof establishes is enough: a top-tier product team, with real cloud infrastructure already running, tested the on-device alternative honestly and switched. The tooling they used is the same free platform stack available to any app today.
Running that same head-to-head for your product - picking the right candidate feature, building the dual path, defining the metrics - is exactly the kind of engagement we do. First conversation is free, and you keep the written assessment either way.