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 →

Meta’s 'Shape Your Feed' uses LLM agents to let users steer their feeds in real time, substantially improving offline alignment (98.9% accuracy) and driving positive lifts in feed relevance and user sentiment in large-scale production A/B tests; however, the paper provides limited experimental detail on effect sizes, duration and robustness.

Shape Your Feed: An LLM-based Agentic System for Conversational Recommendation
Ziyun Xu, Bosen Ding, Yue Zhang, Ji Qi, Qingyuan Song, Jizhou Huang, Liwei Wang, Jefferey Santelli, Yue Weng, Qichao Que, Zhenheng Yang, Junfeng Pan, Linhong Zhu · August 06, 2026
arxiv rct medium evidence 8/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. Ziyun Xu unresolved corpus identity
  2. Bosen Ding unresolved corpus identity
  3. Yue Zhang unresolved corpus identity
  4. Ji Qi unresolved corpus identity
  5. Qingyuan Song unresolved corpus identity
  6. Jizhou Huang unresolved corpus identity
  7. Liwei Wang unresolved corpus identity
  8. Jefferey Santelli unresolved corpus identity
  9. Yue Weng unresolved corpus identity
  10. Qichao Que unresolved corpus identity
  11. Zhenheng Yang unresolved corpus identity
  12. Junfeng Pan unresolved corpus identity
  13. Linhong Zhu unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Ziyun Xu provider ID
  2. Bosen Ding provider ID
  3. Yuepeng Zhang provider ID
  4. Jinlun Qi provider ID
  5. Qingyuan Song provider ID
  6. Jizhou Huang provider ID
  7. Liwei Wang provider ID
  8. Jefferey Santelli provider ID
  9. Yue Weng provider ID
  10. Qichao Que provider ID
  11. Zhenheng Yang provider ID
  12. Junfeng Pan provider ID
  13. Linhong Zhu provider ID
Shape Your Feed (SYF) is an LLM-driven agentic recommendation architecture that fuses multi-modal user inputs into a persistent semantic profile to re-rank and prune feed items, and in large-scale A/B tests improved perceived feed relevance and user sentiment while achieving 98.85% offline alignment accuracy.

Citation observations

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

Industrial recommendation systems predominantly adopt a passive ranking paradigm that infers user preferences from implicit behavioral signals (e.g., clicks, dwell time) rather than explicit, natural language inputs. As a result, users experience a persistent discrepancy between their explicit interests and what passive behavioral algorithms deliver, limiting their ability to express nuanced preferences or steer their feed in real time. To address this growing gap between how recommendations are optimized and how users wish to articulate their interests, we present Shape Your Feed (SYF), an LLM-based agentic recommendation framework that enables real-time, multimodal co-curation of content. SYF employs a three-tier architecture: (i) a Perception Flow that captures fine-grained user intent from text prompts, voice commands, and UI interactions; (ii) a Serving Flow that performs real-time agentic re-ranking and pruning of candidate items, grounded in a persistent Semantic Profile encoding evolving user preferences; and (iii) a Self-Evolution Flow that aligns system behavior with human judgments via Direct Preference Optimization (DPO) and an LLM-as-a-Judge ensemble. Offline evaluations show that SYF's alignment scoring module achieves 98.85% accuracy, substantially improving over strong few-shot baselines. Large-scale online A/B experiments on production traffic further demonstrate that SYF improves feed relevance and user sentiment, indicating a practical and scalable path toward interactive, user-steerable recommendation in industrial settings.

Summary

Main Finding

Shape Your Feed (SYF) is an LLM‑based, agentic recommendation framework that converts multi‑modal user inputs (text, voice, UI controls) into a persistent Semantic Profile and uses that to perform real‑time, catalog‑grounded re‑ranking and pruning of feed candidates. Offline evaluations show the system’s alignment scoring reaches 98.85% accuracy (vs. strong few‑shot baselines). Large‑scale online A/B tests on production traffic report improved feed relevance and user sentiment, demonstrating a practical, scalable path toward interactive, user‑steerable feeds in industrial settings.

Key Points

  • Problem addressed: Passive ranking systems infer preferences from implicit behavior only, limiting users’ ability to express nuanced, real‑time preferences. SYF enables explicit, conversational steering while preserving catalog grounding and production quality.
  • Three‑tier architecture:
    • Perception Flow: LLM orchestrator that ingests multi‑modal inputs, runs intent detection, synthesizes and updates a persistent Semantic Profile St, and asynchronously sources candidate items into a Candidate Cache.
    • Serving Flow: Context generation (decodes item features to natural language), Agentic Refinement (augmentation, alignment scoring, hard pruning of disallowed items, re‑ranking), and Justification generation for transparency. Final score s_final = α·ŷ_v|St + (1−α)·ŷ_u,v blends semantic alignment with baseline engagement prediction.
    • Self‑Evolution Flow: Closed‑loop optimization that uses online behavior + LLM‑as‑a‑Judge ensemble and Direct Preference Optimization (DPO) to refine agents and to distill semantic priors back into the production ranker.
  • Practical design choices:
    • Catalog grounding via retrieval-augmented candidate sourcing and reliance on production engagement scores to avoid hallucinated items.
    • Asynchronous candidate sourcing and lightweight ranking (f′θ) to reduce latency on the critical path.
    • Hard pruning threshold τ enforces immediate negative constraints (user “don't show”).
    • Modular tool orchestration separates recommendation tools from general Q&A to keep intent tracking tight.
  • Training / alignment: supervised fine‑tuning (SFT) and DPO used for late‑stage alignment; LLM‑as‑Judge ensemble for preference labeling and policy alignment.
  • Empirical results: alignment scoring module: 98.85% accuracy; online A/B tests on production traffic improved measured feed relevance and user sentiment (paper reports large‑scale, production experiments).

Data & Methods

  • System-level design validated with both offline and online evaluation:
    • Offline: alignment scoring module evaluated against strong few‑shot LLM baselines (98.85% accuracy reported).
    • Online: large‑scale A/B experiments run on production traffic measuring feed relevance and user sentiment (statistically significant improvements reported in paper).
  • Components and algorithms:
    • Algorithm 1 (Perception Agent): preprocess multi‑modal interactions, orchestrate tasks, detect intents, synthesize Semantic Profile St, and trigger asynchronous candidate sourcing when new positive interests ΔS+_t appear.
    • Algorithm 2 (Async Candidate Sourcing): inventory search per interest, lightweight scoring with f′θ, select top‑K per interest to populate/refresh Candidate Cache C_s,t.
    • Agentic refinement (Serving): compute semantic alignment scores ŷ_v|St over augmented candidate pool (C_prod ∪ C_aug), apply pruning (threshold τ), and re‑rank with blending parameter α.
  • Alignment & tuning:
    • Late‑stage alignment uses SFT → DPO, and an LLM‑as‑Judge ensemble for preference judgments.
    • Agentic knowledge distilled back into production ranker via representation enhancement, retrieval augmentation, and latent prior signals.
  • Metrics:
    • Alignment scoring accuracy (offline).
    • Production metrics: feed relevance (engagement proxies) and user sentiment (likely survey/feedback or behavioral sentiment proxies) in A/B tests.
  • Deployment considerations: modular, asynchronous design to keep latency acceptable in high‑throughput feed environments.

Implications for AI Economics

  • Platform monetization and engagement
    • Increased user agency can raise short‑term engagement and user satisfaction, potentially increasing time spent and ad inventory value. Improved relevance may also reduce churn.
    • Trade‑off management: blending weight α governs the balance between explicit user intent and engagement‑optimized ranking; platforms can tune α to optimize revenue vs. satisfaction.
  • Cost and infrastructure
    • LLM inference (Perception + Serving alignment) introduces additional compute and latency costs. Economic viability depends on the marginal revenue lift vs. increased serving and engineering costs.
    • Asynchronous candidate sourcing and lightweight re‑ranking are practical cost‑saving design patterns; still, marginal cost per QPU/latency-sensitive request is nontrivial.
  • Auction and advertiser effects
    • Real‑time user steering that changes feed composition may alter ad targeting signals and auction dynamics. Advertisers may face more heterogeneous or harder‑to‑predict inventory; platforms may monetize steerability (e.g., premium prioritized placements, conditional targeting).
    • Platforms must decide whether and how to incorporate user‑specified preferences into ad allocation and pricing, raising potential fairness/consent issues.
  • Product differentiation and competition
    • Agentic feeds can be a differentiator: platforms offering transparent, steerable recommendations may gain market share. This increases incumbents’ incentives to invest in LLM‑enabled personalization, potentially raising barriers to entry due to compute and data requirements.
  • Welfare, externalities, and regulation
    • Positive: greater transparency and control can improve user welfare and perceived autonomy.
    • Negative risks: reinforcing filter bubbles or enabling manipulation if users are nudged toward certain content profiles. Pruning and semantic expansion policies must be audited for bias.
    • Regulatory scrutiny likely around personalization transparency, data usage, and explanations; agentic designs that produce explicit profile state make compliance easier but also expose actionable data that must be governed.
  • Measurement and incentives
    • Short‑term engagement gains may not equate to long‑term welfare; platforms should measure retention, satisfaction, and diversity over extended horizons.
    • Incentive alignment across stakeholders (users, advertisers, platform) is nontrivial—platforms may need novel metrics or market mechanisms (e.g., priced steerability, opt‑in controls).
  • Research and business opportunities
    • Pricing models for steerability (paid personalization controls), premium experiences, and dynamic pricing of ads when user intent signals change.
    • Market design research on auction adjustments when inventory quality is endogenously shaped by conversational inputs.
    • Cost–benefit analyses comparing increased monetization vs. compute/engineering costs and regulatory compliance overhead.
  • Operational considerations
    • Platforms must invest in robust guardrails (catalog grounding, pruning thresholds τ) and continual self‑evolution to prevent drift/hallucination.
    • Data governance: persistent Semantic Profiles enable better personalization but require careful privacy, retention, and consent policies.

Takeaway for AI economists: SYF illustrates how LLMs can materially shift recommendation from passive inference to interactive, user‑driven market mechanisms. This creates both value (higher relevance, potential revenue uplift) and new economic trade‑offs (compute costs, auction dynamics, welfare impacts) that merit careful empirical measurement and new product/market designs.

Assessment

Paper Typerct Evidence Strengthmedium — The paper reports both strong offline model performance (alignment scoring at 98.85% vs few-shot baselines) and large-scale online A/B improvements on production metrics (feed relevance and user sentiment), which supports practical effectiveness. However, the excerpt lacks crucial experimental details (randomization unit, sample sizes, statistical significance, duration, metric definitions, heterogeneity, and long-term effects), limiting confidence in external validity and causal interpretation beyond the tested setting. Methods Rigormedium — The architecture and evaluation mix offline supervised evaluation and production randomized experiments, which is the right combination for systems validation. But the write-up (as provided) omits many design and analysis details needed to judge rigor fully: e.g., randomization protocol, pre-registration, primary endpoints, correction for multiple testing, handling of interference/spillovers, balance checks, effect sizes and CIs, and robustness/homogeneity analyses. The system-level claims are plausible but not exhaustively substantiated in the supplied text. SampleLarge-scale production traffic on a Meta social feed (multi-format content: posts, short videos, stories); offline datasets for alignment scoring and few-shot baselines (details not provided); system logs of multi-modal user interactions (text prompts, voice commands, UI controls), candidate content inventory V, and user behavioral history H_u used for lightweight ranking and evaluation; online experiments randomized across production users (sample size and assignment strata not specified). Themeshuman_ai_collab innovation IdentificationRandomized online A/B experiments on production traffic compare the SYF agentic serving pipeline to the existing production feed; causal claims rest on random assignment (A/B) for online metrics, supplemented by offline evaluation (alignment classifier accuracy) and ablations, though the paper excerpt provides few details on randomization procedure, clustering, sample sizes, metric definitions, or handling of spillovers. GeneralizabilityEvaluated in a single platform (Meta) and feed architecture — results may not transfer to other platforms with different content mixes, user demographics, or moderation policies., Proprietary production ranker and inventory constraints limit reproducibility and applicability to smaller platforms or academic settings., Short-to-medium term A/B outcomes reported; long-term effects on engagement, user satisfaction, creator economics, and potential adversarial behavior are not addressed., Language, cultural, and regional differences may affect LLM intent parsing and perceived explanations; robustness across languages/regions unclear., Potential spillovers and network effects in social feeds (e.g., visibility changes to creators) may limit external validity if not accounted for.

Claims (4)

ClaimDirectionOutcomeConfidence & EvidenceDetails
SYF's alignment scoring module achieves 98.85% accuracy and substantially improves over strong few-shot baselines. Other positive Alignment-scoring accuracy
Reading fidelity high
Study strength medium
98.85% accuracy
0.6
Large-scale online A/B experiments on production traffic show that SYF improves feed relevance. Output Quality positive Feed relevance
Reading fidelity high
Study strength low
not reported
0.3
Large-scale online A/B experiments on production traffic show that SYF improves user sentiment. Consumer Welfare positive User sentiment
Reading fidelity high
Study strength low
not reported
0.3
SYF enables real-time, multimodal co-curation of content by using text prompts, voice commands, and UI interactions to capture user intent and steer feed recommendations. Task Allocation positive User control over feed recommendation and explicit-intent alignment
Reading fidelity high
Study strength low
not reported
0.3

Notes