RecGPT-Mobile: Bringing LLM Reasoning to the Edge of E-Commerce

RecGPT-Mobile: On-Device Large Language Models for User Intent Understanding in Taobao Feed Recommendation

Summary
Problem
Method
Results
Takeaways
Abstract

RecGPT-Mobile is a pioneering framework for deploying lightweight Large Language Models (LLMs) on mobile devices to predict user search intent in real-time. By utilizing a quantized Qwen3-0.6B model as an "Intent Agent," it translates local user behaviors into explicit search queries, achieving significant performance gains in Taobao's recommendation feed.

TL;DR

RecGPT-Mobile marks a significant milestone in industrial AI by deploying a lightweight LLM (Qwen3-0.6B) directly onto user smartphones to predict "Next-Query" intent. By replacing distant cloud inference with local semantic reasoning, Taobao achieved a 2.5% GMV boost while maintaining stable on-device performance.

Context & Motivation: The Latency-Cost Paradox

In modern e-commerce like Taobao, user intent is a moving target. While Cloud-based systems are powerful, they face two massive hurdles:

  1. Communication Lag: The "round-trip" from a phone to a data center prevents the system from reacting to a user's very last click instantly.
  2. Inference Costs: Running billion-parameter LLMs for every single scroll for hundreds of millions of users is economically unsustainable.

The authors argue that the future lies in Edge Intelligence. If the device can "understand" the user locally, it can update recommendations in real-time without constantly pinging the server.

Methodology: The "Small but Mighty" Intent Agent

The core of RecGPT-Mobile is a quantized 0.6B parameter model. However, simply shrinking the model isn't enough; the system needs to be smart about how and when it thinks.

1. Adaptive Prompt Construction

Not all users have the same hardware. RecGPT-Mobile uses Algorithm 1, which dynamically selects the best prompt template and structural components based on a "Budget Scorer." If the device is low on memory or battery, it delivers a more compact prompt to ensure the inference doesn't crash the app.

System Architecture

2. The Trigger Mechanism: Avoiding "Redundant Thinking"

To save battery, the LLM shouldn't run after every single click. The authors designed an Intent Drift trigger. It calculates:

  • Entropy (): Is the user's focus becoming more concentrated or more scattered?
  • Jaccard Similarity: How much overlap is there between current and previous behaviors?
  • JS Divergence: How much has the distribution of user interests shifted?

The LLM is only triggered when the shift exceeds a threshold ().

Mobile Intent Agent Trigger Pipeline

Experiments: Real-World Impact

The system was tested across various Taobao scenarios like the "Shopping Cart" and "Order List" pages.

Key Metrics:

  • Average GMV Increase: +2.5%
  • Pay Conversion: +2.7%
  • Consistency: Even at P95 (tail latency), the model remains responsive, proving that model quantization (LoRA + Quant) effectively bridges the gap between accuracy and mobile efficiency.

Latency Performance

Critical Insight & Conclusion

RecGPT-Mobile proves that we don't always need 70B parameters for specialized tasks. A refined 0.6B model with high-quality supervised fine-tuning (using LLM-augmented and human-annotated data) can outperform larger, general-purpose models in specific domains like e-commerce intent understanding.

Takeaway: The "Intent Agent" approach, combined with trigger-based inference, provides a blueprint for any mobile app looking to integrate AI without blowing their cloud budget or draining user batteries.

Find Similar Papers

Try Our Examples

  • Find other recent papers exploring the deployment of Large Language Models under 1 billion parameters for millisecond-latency recommendation tasks on mobile hardware.
  • Which paper first introduced the concept of "Intent-centric reasoning" in RecGPT, and how does RecGPT-Mobile adapt those cloud-scale theories for constrained edge environments?
  • Explore research that applies Jensen-Shannon divergence or entropy-based triggers to optimize the inference frequency of on-device AI agents in non-Recommendation domains like CV or Audio.
Contents
RecGPT-Mobile: Bringing LLM Reasoning to the Edge of E-Commerce
1. TL;DR
2. Context & Motivation: The Latency-Cost Paradox
3. Methodology: The "Small but Mighty" Intent Agent
3.1. 1. Adaptive Prompt Construction
3.2. 2. The Trigger Mechanism: Avoiding "Redundant Thinking"
4. Experiments: Real-World Impact
4.1. Key Metrics:
5. Critical Insight & Conclusion