XRAG: Cross-lingual Retrieval-Augmented Generation (Amazon, Heidelberg University, May 2025)
Paper: https://arxiv.org/abs/2505.10089
Authors: Wei Liu, Sony Trenous, Leonardo F. R. Ribeiro, Bill Byrne, Felix Hieber (Amazon; Heidelberg University)
Category: Multilingual / Cross-lingual NLP
Overview
XRAG examines the behavior of Retrieval-Augmented Generation (RAG) systems in cross-lingual settings. While RAG is well studied in monolingual (typically English) configurations, real-world deployments often involve queries in one language, knowledge sources in another, and answers expected in yet another language. The paper asks: what happens to RAG quality when the languages of the pipeline components are mismatched?
Approach
The study systematically swaps the language of individual components in a RAG pipeline — the query, the retrieved documents, and the generated answer — creating a set of cross-lingual configurations. By comparing these configurations against monolingual baselines, the authors isolate which parts of the pipeline degrade when languages are mixed.
Key Findings
- Cross-lingual configurations introduce distinct failure modes not present in monolingual RAG, affecting retrieval, document selection, and answer generation stages differently.
- Error analysis categorizes failures into stages such as retrieval failures, wrong-document selection, and answer generation errors, enabling targeted diagnosis.
- The results highlight that simply combining multilingual retrievers with multilingual LLMs does not guarantee robust cross-lingual RAG; component interactions matter.
- Evaluate RAG systems under explicit cross-lingual settings, not only monolingual benchmarks.
- Diagnose failures stage by stage (retrieval vs. selection vs. generation) before optimizing.
- Latency, cost, and hallucination risks remain hard constraints for multilingual production systems.
- Original paper: arXiv:2505.10089
- CLIRudit: Cross-Lingual Information Retrieval of Scientific Documents (arXiv:2504.16264)
- Evaluating Large Language Models for Cross-Lingual Retrieval (arXiv:2509.14749)
- Cross-Lingual Cross-Modal Retrieval with Noise-Robust Fine-Tuning (IEEE)
- Multimodal LLM Enhanced Cross-lingual Cross-modal Retrieval (MM 2024, DOI: 10.1145/3664647.3680886)