- The paper introduces MLTFR, a framework that selectively filters and routes LLM token embeddings to boost recommender performance.
- It employs a differentiable Gumbel-softmax token filtering and MoE-based aggregation to align intrinsic LLM semantics with task-specific needs.
- Empirical results across multiple datasets show significant improvements in HR@20 and NDCG@20 compared to traditional prompt-based LLM approaches.
Multi-LLM Token Filtering and Routing for Sequential Recommendation
The integration of LLMs within recommender systems has primarily focused on exploiting external corpora to align semantic representations, typically relying on item or user textual information. However, this paradigm is fundamentally limited when high-quality textual corpora are unavailable, incomplete, or incur prohibitive maintenance overheads. The examined work challenges this dependency by proposing a corpus-free paradigm: direct utilization of the intrinsic token embedding spaces of pretrained LLMs as semantic augmentation resources for sequential recommenders. A systematic empirical analysis reveals that naive injection of such embeddings is destabilizing and only marginally beneficial, mainly due to large, noisy LLM vocabularies and semantic misalignment between token and task-specific domains.
The central hypothesis posited is that only a subset of LLM token embeddings, judiciously selected and aligned with user histories, can serve as efficient and robust semantic injectors in recommendation models, providing significant gains without recourse to textual features.
Figure 1: Task-relevant LLM token filtering effectively denoises semantic injection; empirical results show nontrivial gains for filtered LLM token embeddings compared to both random and unfiltered LLM embeddings on standard sequential recommendation backbones.
MLTFR Architecture
To realize this paradigm, the paper introduces MLTFR (Multi-LLM Token Filtering and Routing)โa modular plug-and-play MoE system that routes distilled token embeddings from multiple LLMs into sequential recommendation backbones. The principal innovations comprise two synergistic mechanisms: (1) an interaction-guided, differentiable token filtering strategy that identifies user-relevant tokens from each LLM vocabulary, and (2) an MoE integration pipeline leveraging both expert diversity and a Fisher-weighted semantic consensus expert to stabilize multi-LLM knowledge fusion.
The framework is architected as follows:
Experimental Analysis
A thorough empirical campaign on multiple public recommendation datasets (Amazon Office, Pantry, Music, RateBeer) and across strong backbone models (SASRec, BERT4Rec, FMLPRec, LinRec, CL4SRec, BSARec) demonstrates:
Black-box LLM Comparison
A direct comparison with prompt-based, text-conditioned black-box LLM recommenders (ChatGLM/glm4-plus) reveals a strong contrast: MLTFR-equipped ID-based models, operating without any text, achieve much higher top-1 accuracy (0.246 vs 0.121 for Office), even under fair candidate constraints. This demonstrates that, in absence of explicit item corpora, task-guided token selection from LLM embeddings is significantly more effective than direct LLM inference with text templates.
Theoretical and Practical Implications
The corpus-free, lightweight nature of MLTFR is particularly appealing for industrial recommendations where real-world item corpora are inconsistent or unavailable. The Fisher-based consensus mechanism prevents over-reliance on any one expert, making the solution robust under LLM heterogeneity and domain shift. The modular design allows for seamless insertion into existing recommenders, incurs only a modest computational overhead compared to full text-encoding approaches, and is amenable to parallelization.
A key theoretical insight is that LLM token embedding spaces can serve as generic semantic reservoirs, but only if filtered and routed via user-centric and model-centric mechanisms. MoE-based multi-LLM routing provides an effective medium for fusing non-overlapping semantic perspectives with minimal representational conflict.
The results contradict the implicit assumption in prior art that textual corpora are essential for semantic augmentation; this framework produces robust improvement without text and minimal backbone modifications.
Future Directions
Several lines of inquiry arise from these findings:
- Automated LLM expert selection and dynamic expert routing conditioned on user or domain properties.
- Extension beyond token embeddings to intermediate or higher-level LLM representations.
- Generalization to multi-modal and session-based recommendation, leveraging user- or context-specific expert assignment.
- Adaptive Fisher-weighted consensus with online model selection and regularization.
Conclusion
The proposed MLTFR framework demonstrates that corpus-free semantic augmentation for sequential recommendation is feasible and effective through multi-LLM token selection and gated expert routing. The design delivers consistent performance gains, strong robustness to expert heterogeneity, and outperforms black-box, prompt-based LLM recommenders under textless constraints. This constitutes a substantial advancement in the practical deployment of LLM competencies for industrial recommendation pipelines without incurring the cost or limitations of textual corpora.
(2604.18200)