The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Flipkart's multi-agent AI recommendations dramatically raised WhatsApp campaign clicks — roughly a 285% uplift — and produced downstream purchases in a 23‑day, 15k-message field deployment; however, the result is observational, limited to a high‑affluence mobile-search cohort and lacks randomized controls.

Bridging Search and CRM: Productionizing AI Product Research Agents for Customer Re-Engagement
Mandar Kulkarni, Pooja A., Samir Shah · August 19, 2026
arxiv quasi_experimental medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Mandar Kulkarni unresolved corpus identity
  2. Pooja A. unresolved corpus identity
  3. Samir Shah unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Mandar Kulkarni provider ID
  2. A. Pooja provider ID
  3. Samir Shah provider ID
A production multi-agent LLM-based product research system that identifies exploratory mobile-search users and sends personalized WhatsApp recommendations produced ~285% higher CTR versus historical WhatsApp campaign baselines and generated measurable downstream purchases in a 23-day, 15k-message deployment.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Modern e-commerce platforms often operate search, recommendation, personalization, and CRM systems independently, limiting opportunities for proactive customer re-engagement. This is particularly challenging for exploratory intents such as best smartphones or latest 5G phones, where users may leave the platform for external research before purchasing. We present a scalable, production-deployed framework that bridges search and CRM workflows through AI-powered Product Research Agents. The system identifies users with exploratory purchase intent and low engagement, conducts grounded multi-agent product research using behavioral signals, external knowledge, and enterprise catalog data, and delivers personalized recommendations through WhatsApp. We evaluate the framework in a 23-day production deployment involving approximately 15K WhatsApp notifications for mobile product discovery. The campaign achieved substantial CTR improvements over traditional WhatsApp recommendation campaigns, with evidence of secondary engagement through message forwarding and sharing. The deployment also generated downstream purchases and GMV impact, demonstrating the practical effectiveness of AI Product Research Agents for proactive customer re-engagement and end-to-end customer journey optimization.

Summary

Main Finding

A productionized multi-agent AI pipeline that bridges search and CRM (via WhatsApp) can materially improve exploratory-product discovery engagement and downstream purchases. In a 23-day deployment for mobile-product discovery (≈15K WhatsApp messages), the AI Product Research Agents generated ~37K visits (≈2.47 visits/message), produced a ~+285% CTR uplift vs historical WhatsApp mobile campaigns, modestly increased read rates (~+8%), showed evidence of organic forwarding (visits > messages), and produced measurable downstream purchases / GMV impact.

Key Points

  • Problem targeted: exploratory, subjective user queries (e.g., “best smartphones”) where users leave the platform to research externally, causing fragmented customer journeys.
  • Selective, cost-aware targeting: A PySpark rule-based filter selects high-potential search queries (zero-clicks, high-affluence users, subjective lexical cues, mobile vertical) to avoid running expensive agent workflows for all traffic.
  • Modular multi-agent architecture:
    • Orchestrator coordinates flow and short-circuits when queries are specific.
    • Query Analysis Agent extracts structured intent (specific vs exploratory, category, budget).
    • Discovery Agent performs query expansion, external web retrieval (reviews, blogs, video), consensus-driven candidate extraction, and produces reasoning + source references.
    • Flipkart Search Agent grounds candidates to internal catalog FSNs, checks availability/serviceability, and fetches personalized pricing/offers.
    • Review Agent validates launch dates and specifications (using external re-checks + get_fsn_details), prunes inconsistent candidates, and outputs templated results.
  • Channel & instrumentation:
    • Recommendations delivered as concise templated WhatsApp messages with shortened URLs and day-level UTM tags to capture both direct and forwarded clicks.
    • Shortening + UTM design allowed compact messages and day-wise click attribution.
  • Production metrics and behavior:
    • 15,061 WhatsApp messages delivered over 23 days.
    • 37,258 visits tracked via UTM-tagged shortened URLs; on several days visits > delivered messages, interpreted as forwarding/virality.
    • CTR averaged +285% vs historical WA mobile campaign baseline; read rate only modestly higher due to measurement limits on forwarded messages.
    • Downstream purchase/GMV impact measured via 15-day post-delivery order-log overlap between recommended products and purchases.
  • Practical robustness measures:
    • Grounding to internal catalog and a Review Agent reduced hallucination risk and enforced constraints (availability, price, serviceability).
    • Hierarchical orchestrator design outperformed a fixed sequential agents design (lower instruction-violation rate, per ablation).
  • Compute baseline: system uses Google Gemini 2.5 Flash; generating recommendations requires ~8 LLM calls per query (approximate).

Data & Methods

  • Data sources:
    • Large-scale internal search interaction logs (impressions, clicks, query text, user features like affluence and pincode, vertical tag).
    • External web sources: reviews, editorial blogs, video content via web search tool.
    • Internal enterprise catalog APIs: Flipkart Search API, Pricing API, get_fsn_details.
    • CRM delivery channel: WhatsApp messaging service; internal URL shortener for compact redirect links.
    • Outcome data: click logs (UTM-tagged), message read metrics (for direct recipients), and order logs (15-day post-delivery for purchase/G MV attribution).
  • Filtering pipeline:
    • PySpark rule-based filters: zero-click queries, high-affluence users, subjective lexical cues, mobile vertical only (configurable).
  • Agent pipeline:
    • Query expansion (prompt-driven variants), web retrieval, consensus-based candidate extraction, grounding to FSNs, validation (specs & launch dates), templating for channel limits.
    • Review Agent parallelized for spec and launch-date checks to lower latency.
  • Measurement & attribution:
    • Day-wise UTM tags applied before URL shortening; clicks on shortened URLs redirected to UTM-bearing final URLs for aggregation.
    • CTR comparisons are campaign-average vs historical WA mobile campaign baseline.
    • Downstream purchase/GMV measured by matching recommended products to later purchases within a 15-day window.
  • Deployment scale: 23-day live run, ~15K messages, ~37K visits.

Implications for AI Economics

  • Targeted agentic interventions can yield high ROI if compute-intensive reasoning is restricted to high-impact user segments. The paper demonstrates large engagement uplifts by investing agentic compute on a filtered subset (zero-click + affluent + subjective queries).
  • Virality/forwarding magnifies value: channel choice matters. Using WhatsApp enabled low-cost amplification (secondary recipients not in original target set), increasing effective reach per message and lowering acquisition cost per click.
  • Grounding and validation layers materially reduce downstream risks (hallucination, broken recommendations), which is economically important because incorrect recommendations can erode trust and increase remediation costs.
  • Attribution design is essential: inexpensive instrumentation (day-level UTM + shortener) allowed the team to measure both direct and forwarded engagement without heavy per-product tracking infrastructure. For economic evaluation, ensure UTM + redirect design captures relevant secondary effects.
  • Trade-offs and cost control:
    • Multi-agent workflows are compute and latency intensive (~8 LLM calls/query here). Cost-effectiveness arises from selective invocation (filtering) and from measurable downstream GMV uplift—practitioners must model LLM-call cost per intervention vs expected incremental GMV to determine thresholds.
    • Architectural choices (centralized orchestrator, parallelized Review Agent) can reduce instruction-violation rates and latency, improving effective throughput and lowering wasted compute.
  • Policy and externalities:
    • Targeting “high-affluence” users concentrates benefits but can raise fairness and regulatory scrutiny; experimenters should audit targeting rules and measure heterogeneous treatment effects across segments.
    • Privacy and messaging compliance (WhatsApp policies, consent) must be integrated into economics models because violations can produce fines or reputational costs.
  • Suggested next steps for researchers/practitioners:
    • Run causal evaluation (randomized control trials) to isolate incremental GMV and lifetime value uplift vs. baseline CRM campaigns.
    • Extend to additional verticals and quantify marginal ROI by vertical and user segment.
    • Explore budget-aware agent invocation (dynamic stopping criteria based on estimated-value-of-information) to optimize cost/benefit given LLM costs.
    • Quantify per-message cost (LLM + orchestration + delivery) and compute cost-per-attributed-order / cost-per-GMV to enable rigorous investment decisions.

Limitations noted in the paper - Evaluation limited to mobile vertical and affluent user subset—generalizability is untested. - Reported metrics are campaign-averaged; no randomized counterfactual RCT reported in the excerpt for causal attribution of GMV. - Full cost accounting (monetary LLM cost, infra, engineering) is not provided in the available text; only LLM-call count and model identity are specified.

If you want, I can: - Produce a simple back-of-envelope ROI calculator template to estimate per-message cost vs required conversion lift, or - Suggest an experimental (RCT) design to causally estimate incremental GMV from the agent-driven campaign.

Assessment

Paper Typequasi_experimental Evidence Strengthmedium — The paper reports a real-world, production deployment with concrete engagement (CTR) and downstream purchase / GMV metrics, which is stronger than purely descriptive or simulated work; however, causal claims are limited because there is no randomized control, limited transparency on baseline matching or statistical tests, potential selection and temporal confounders, and the evaluation is confined to a single vertical, channel, and user segment. Methods Rigormedium — Engineering and algorithmic components are well-specified (PySpark filtering, multi-agent orchestration, grounding to catalog, validation agent, UTM tracking), and the deployment scale is non-trivial; but the evaluation lacks experimental controls, formal statistical inference, and detailed breakdowns (e.g., variance, significance, counterfactuals, long-run effects), which limits internal validity. SampleProduction deployment over 23 days at Flipkart targeting exploratory mobile-product queries filtered from search logs; 15,061 unique WhatsApp notifications delivered to selected users (filters: zero-click queries, high-affluence users, subjective query lexicon, mobile vertical); campaign generated 37,258 clicks (via UTM-tagged shortened URLs) and downstream purchase/GMV effects measured using order logs over a 15-day post-delivery window; system used Google Gemini 2.5 Flash and multiple internal APIs for grounding/pricing. Themesproductivity adoption IdentificationNo randomized experiment or instrumental-variable strategy; identification relies on a before/benchmark comparison to historical WhatsApp campaign metrics and UTM-tagged click attribution, plus overlap analysis between recommended products and later purchases; users targeted via a rule-based PySpark filter (zero-click queries, subjective query lexicon, high-affluence users, mobile-vertical). No counterfactual randomization or adjustment for time-varying confounders is reported. GeneralizabilitySingle e-commerce platform (Flipkart) — results may not generalize to other firms with different catalog/UX., Single product vertical (mobile phones) with rich external content — other categories may behave differently., Subsample restricted to high-affluence users and zero-click/subjective queries — findings may not hold for broader user populations., WhatsApp as the notification channel — channel-specific sharing/forwarding dynamics affect reach and CTR., Short evaluation window (23 days) — no evidence on persistence or long-term conversion/retention effects., No randomized control — observed uplift may reflect selection, seasonal effects, or other concurrent changes., Enterprise-specific integrations (pricing, offers, FSN mapping) limit transferability to companies lacking similar infrastructure., Dependent on a particular LLM and prompts (Gemini 2.5 Flash); different models or prompt designs could change outcomes.

Claims (8)

ClaimDirectionOutcomeConfidence & EvidenceDetails
The AI Product Research Agent campaign achieved an approximately 285% higher click-through rate than historical WhatsApp mobile-product campaign baselines. Consumer Welfare positive WhatsApp campaign click-through rate
Reading fidelity high
Study strength medium
n=15061
~+285%
0.48
The campaign generated 37,258 tracked visits from 15,061 delivered WhatsApp messages. Consumer Welfare positive Tracked visits generated by WhatsApp recommendations
Reading fidelity high
Study strength medium
n=15061
37,258 visits from 15,061 messages
0.48
On multiple campaign days, tracked visits exceeded the number of WhatsApp messages delivered, which the authors attribute to organic message forwarding and sharing. Consumer Welfare positive Secondary engagement through message forwarding and sharing
Reading fidelity high
Study strength low
n=15061
0.24
The AI-agent-driven campaign produced an approximately 8% relative increase in WhatsApp message read rate over historical mobile campaign metrics. Consumer Welfare positive WhatsApp message read rate
Reading fidelity high
Study strength medium
n=15061
~+8%
0.48
The campaign generated downstream purchasing activity and GMV impact, with overlap between targeted users, recommended products, and products later purchased. Firm Revenue positive Downstream purchases and gross merchandise value
Reading fidelity high
Study strength low
not reported
0.24
The hierarchical centralized-orchestrator agent architecture had a lower instruction-violation error rate than the sequential-agent architecture. Error Rate positive Instruction-violation error rate
Reading fidelity high
Study strength low
not reported
0.24
The production framework selectively applies computationally expensive agentic reasoning to filtered exploratory queries rather than all user traffic. Organizational Efficiency positive Operational scalability and computational targeting of research workflows
Reading fidelity high
Study strength medium
not reported
0.48
The Review Agent validates product launch dates, catalog specifications, and query constraints before recommendations are sent to users. Ai Safety And Ethics positive Recommendation factual consistency and constraint adherence
Reading fidelity high
Study strength medium
not reported
0.48

Notes