Alibaba's DualLane: classify first, reason on the tail
Alibaba Cloud cut LLM use in support ticket handling with a two-token fast path and 96.5% offline accuracy. The pattern works on your ticket queue too.
Most AI support automation is built backwards. Every ticket goes to a language model, the model reasons its way to an answer, and you pay in latency and wrong answers for the 80% of tickets that were the same ten questions. Alibaba Cloud built the inverse and put it in production: a support ticket system whose first move is to decide whether it needs an LLM at all.
What actually happened
The system is called DualLane, described in a SIGKDD 2026 paper from eleven Alibaba Cloud researchers, "DualLane: Fast and Reliable LLM Agents for Interactive AIOps via Dual-Path Planning." The Register covered it yesterday.
Every incoming query starts down two paths at once. The fast path spends roughly two tokens classifying whether this is a known, high-frequency problem. If it is, the system answers from a pre-validated template and kills the slow path before it finishes thinking. The slow path is a conventional LLM agent with up to about 3,000 tokens of reasoning, and it only gets to finish on the genuinely unusual tickets.
Reported results: 96.5% accuracy in offline tests, with lower latency than agent-planning baselines like LLMCompiler and ReAct. Alibaba has it running in production. The paper also puts the cost of a 3,000-token pass at roughly $0.001 — which is the number people will quote and the least interesting one here. A tenth of a cent was never the problem. The problem is a customer waiting eleven seconds for a paragraph that gets their refund policy wrong.
Why it matters for your business
The result generalizes past AIOps because the shape of the queue is the same everywhere. Pull your last 500 tickets and sort by intent — where's my order, how do I return this, reset my password, is this in stock. That head of the distribution doesn't need reasoning. It needs correct identification and a good canned answer, which is a classification problem you can measure, version, and fix.
Three things this pattern buys you that "just wrap it in an LLM" doesn't:
Auditability. When a templated answer is wrong, you edit the template and it's wrong zero times after that. When a generated answer is wrong, you edit a prompt and hope. We've written before about deterministic tools beating bigger models; this is the same lesson at the routing layer.
Latency where customers notice it. The common questions are the ones with impatient askers. Answering them in milliseconds while the hard ones take seconds is the right allocation.
A real escalation boundary. A confidence threshold on the classifier gives you one honest place to hand off to a human, instead of an agent that improvises when it should stop.
Running both paths concurrently is the clever bit — you don't pay a routing penalty on the hard tickets, because the slow path started at the same moment. Copy that. Don't gate the LLM behind the classifier; race them and cancel.
Key takeaways
- Alibaba Cloud's DualLane runs a ~2-token classifier and a ~3,000-token LLM agent concurrently, killing the LLM path when a known issue is matched
- Reported 96.5% offline accuracy with lower latency than LLMCompiler and ReAct baselines; it's in production, per the SIGKDD 2026 paper
- The win is latency and auditability, not token cost — a wrong templated answer gets fixed permanently, a wrong generated one gets a prompt tweak
- Sort your last 500 tickets by intent; the head of that distribution should be templates, and the classifier's confidence score is your human-escalation line
Sending every support ticket to a language model? We build support automation that answers your top intents from versioned templates and reserves the model for the tail — with the escalation threshold set where you want it. See how we've built it or send us a month of tickets.
Sources: The Register, Techzine.
- #ai-agents
- #customer-support
- #automation-design
- #alibaba-cloud
- #reliability
Tommy Rush — Founder, Rush Commerce
Operator turned builder. 15+ years running operations — now shipping the systems businesses run on. More
Get The Rush Report weekly — one email, zero fluff.
Keep reading
River AI raises $1.1B to make custom models the default
A two-month-old startup raised $1.1B from General Catalyst, Nvidia and AMD to train company-owned models on open weights. Portability just got funded.
Read itOpenAI COO Brad Lightcap leaves: your roadmap isn't a person
OpenAI's longest-serving executive is out — the fourth senior departure since July. What continuous vendor leadership churn means for the contracts you signed.
Read it