Research
Translating the Translator: Decomposing the Cost of English-Forced Inter-Agent Communication
Overview Research area: Natural Language Processing — multilingual LLM multi-agent systems, cross-lingual transfer, and agent orchestration architecture. Technical level: Intermediate. Accessible to a

- arXiv
- 2609.15079
- Published
- 2026-09-14
- Authors
- Kushagra Agrawal, Yuming Feng, Man-Fai Leung
AI summary
Overview
- Research area: Natural Language Processing — multilingual LLM multi-agent systems, cross-lingual transfer, and agent orchestration architecture.
- Technical level: Intermediate. Accessible to anyone familiar with LLM pipelines and standard QA metrics (Exact Match, F1), though the statistical procedure (exact McNemar's test, Bonferroni correction) assumes some quantitative background.
- Scope: A controlled 3-condition experiment across four languages that isolates the accuracy cost of forcing inter-agent communication through English rather than the user's native language.
What This Paper Is About
Agent frameworks such as LangChain, AutoGen, and CrewAI default to English for internal messages between agents, even when the user writes in Hindi, Arabic, or Chinese. This paper measures what that default actually costs. It compares an otherwise identical multi-agent pipeline running in the native language against one that routes inter-agent handoffs through English (forward translation, English reasoning, then back-translation to the user's language), isolating the architectural penalty from ordinary orchestration overhead.
Key Contributions
- Controlled isolation design. A three-condition setup — Single-Agent (S), Native Multi-Agent (N), and English-Forced Multi-Agent (E) — that separates the general cost of multi-agent orchestration from the specific cost of English routing. Conditions N and E share the same extractor–answerer core, so the only difference is the English pivot pathway.
- Quantitative isolation of the "English-Forcing Tax." Defined explicitly as Accuracy(N) − Accuracy(E), the tax reaches 30.6 percentage points for Hindi, with all four language comparisons surviving a strict Bonferroni correction (α = 0.0125).
- Diagnostic correlational analysis. Uses chrF between Agent A's English output and an independent English gold reference to show that degraded forward translation is strongly associated with downstream pipeline failure, pointing to a specific stage rather than a generic model weakness.
- Qualitative failure taxonomy. Documents four recurring failure modes — entity mistranslation, semantic drift with compounding hallucination, local entity dropping, and paraphrase-induced penalties — that explain how information is destroyed at the handoff.
Main Findings
-
The tax scales with typological distance from English. Spanish, a Romance language sharing English's Latin script, incurs the smallest penalty at 13.0 percentage points EM (0.553 → 0.423). Arabic follows at 16.7 points (0.430 → 0.263). Chinese drops 27.7 points (0.510 → 0.233) and Hindi 30.6 points (0.443 → 0.137). The ordering es < ar < zh < hi is roughly consistent with typological distance, though the authors note it is confounded with per-language resource availability in the base model.
-
All four differences are statistically significant. Exact two-sided McNemar's tests yield p-values from 6.47 × 10⁻⁵ (Spanish) to 1.16 × 10⁻¹⁸ (Hindi), all well below the Bonferroni-corrected threshold of 0.0125.
-
Discordant pairs are highly asymmetric. For Hindi, the native pipeline succeeded while the English-forced pipeline failed in 106 cases, versus only 14 in the reverse direction. The same asymmetry holds for Chinese (102:19), Arabic (67:17), and Spanish (66:27), confirming that English forcing systematically converts correct predictions into incorrect ones rather than adding random noise.
-
Orchestration overhead and translation tax are separable. The Total Orchestration Penalty (S − N) ranges from 8.3 points (Spanish) to 12.7 points (Hindi) in EM — meaningful, but the English-Forcing Tax (N − E) is larger in every language, meaning the translation pathway costs more than multi-agent coordination itself.
-
A distinct Chinese failure mode exists. For Hindi, Arabic, and Spanish the EM and F1 penalties align closely. For Chinese the F1 penalty is 9.6 percentage points smaller than the EM penalty (0.181 vs. 0.277), implying that corrupted Chinese outputs retain partial semantic or token-level overlap with the gold answer — consistent with lexical variation or paraphrasing rather than outright loss of content.
-
Low forward-translation overlap predicts failure. Across 1,200 Condition E executions, successful pipelines had a mean chrF of 83.90 against the English gold reference (n = 322), while failed pipelines averaged 56.97 (n = 878). Because Agent B only ever sees the translated facts, translation errors propagate before any reasoning error occurs.
-
Failure modes are concrete and destructive. The NFL player "Kony Ealy" was mistranslated as "Be Like Eli," causing Agent B to confidently hallucinate "Eli Manning." "Revolutionary Civil Disobedience" was over-compressed to "Revolution." Administrative terminology without a direct English equivalent was silently dropped. "Sierra Freeway" became "Sierra Highway," preserving meaning but breaking strict EM scoring.
Methodology in Plain English
The researchers built the smallest pipeline that still exhibits the inter-agent handoff behavior they wanted to study: one agent extracts relevant facts from a passage, and a second agent answers a question using only those facts. No agent ever sees the original passage except the extractor.
They ran this on XQuAD, a question-answering benchmark containing professional human translations of the same 300 questions into each of four languages. The model was Aya-23-8B, an open-weight multilingual model deliberately chosen to be strong enough that any failures would reflect architecture rather than a weak base model — meaning the reported penalties are likely underestimates.
Three conditions were compared. In Condition S, a single agent reads the passage and answers directly. In Condition N, Agent A extracts facts in the native language and Agent B answers in the native language. In Condition E, Agent A extracts facts in the native language, translates them to English; Agent B answers in English using the aligned English question; and a third agent, Agent C, translates the answer back into the user's language. Agent C exists because the paper measures the end-to-end, deployable cost — omitting back-translation would evaluate a pipeline that cannot actually serve a non-English user.
Scoring is against native-language gold answers in all three conditions. Statistical significance comes from the exact McNemar's test on paired binary outcomes, with a Bonferroni correction for the four language comparisons. Temperature was set to 0.0 for deterministic, reproducible paired testing. The whole experiment — 3,600 pipeline executions, roughly 7,200 generations — ran in about eight hours on a 16GB MacBook Air using Apple's MLX framework.
Why This Matters
The paper challenges a default that most practitioners adopt without questioning: that English is the best internal language because models reason better in it. The results show that whatever reasoning benefit English offers is more than cancelled out by translation loss in the surrounding pipeline, at least for languages distant from English.
Real-world applications:
- Multilingual customer service agents serving Hindi- or Arabic-speaking users, where a hidden 30-point accuracy collapse would be attributed to the model rather than the architecture.
- Retrieval-augmented generation over non-English corpora, where translation of retrieved chunks into English before reasoning would compound the same tax.
- Agent frameworks and orchestration libraries (LangChain, AutoGen, CrewAI), which could add native-language routing as a supported configuration rather than requiring English message schemas.
- Edge and on-device deployment in regions where users operate in lower-resource languages, since the paper demonstrates the whole experiment runs on consumer hardware.
The equity angle is explicit: the penalty scales with distance from English, so it disproportionately harms speakers of typologically distant and lower-resource languages. That makes English-forced routing a concrete instance of the structural bias documented in NLP resource allocation research.
Industry relevance: The finding is directly actionable for anyone shipping multilingual agent products. The diagnostic result — that forward translation, not English reasoning, is the dominant failure correlate — suggests that improving the English prompt or scaling the model will not fix the problem. The fix is architectural: skip the translation bottleneck entirely.
Future Directions
- Test unquantized and larger frontier models. The study uses an 8-bit quantized 8B model for edge deployment. Quantization is known to degrade sensitive weights, and no unquantized control was run, so the magnitude of the tax in frontier API models remains unknown.
- Disentangle typology from resource availability. The es < ar < zh < hi ordering matches typological distance but is confounded with how much training data each language received. A design that separates the two would clarify which factor drives the penalty.
- Evaluate other model families and pipeline depths. Llama-3, Mistral, 7B vs. 70B scales, and chains longer than three hops all remain untested. Deeper chains would likely compound the loss further, but this is unverified.
- Build and test native-language routing as a concrete intervention. The paper argues for it but does not implement it as a mitigation. Related open questions include whether few-shot prompting recovers the translation quality, whether semantic similarity metrics (rather than chrF on gold answers) better isolate translation fidelity, and whether the Chinese F1 divergence reflects genuine paraphrasing that human evaluation would score as correct.
Target Audience
Researchers working on multilingual NLP, cross-lingual transfer, and multi-agent LLM systems will find the experimental design and the explicit decomposition of penalties most useful. Engineers building agent frameworks or deploying multilingual conversational products gain an immediately actionable architectural finding, along with a reproducible local setup that requires no cluster. Evaluators and benchmark designers will appreciate the chrF-based diagnostic approach for attributing failure to a specific pipeline stage. Finally, researchers studying equity and language access in AI will find a quantified, statistically rigorous case study of how an English-centric default imposes measurable costs on non-English users.
Authors’ abstract
Multi-agent LLM architectures, such as LangChain and AutoGen, largely assume English as the lingua franca for internal inter-agent communication, even when the end-user task is non-English. We fill this gap by evaluating a two-agent extraction-answer core, with an additional back-translation agent in the English-forced condition, across four typologically diverse languages (Hindi, Chinese, Spanish, Arabic; n = 300 per language) using the Aya-23-8B model. We compare a native-language pipeline to an English-forced one (which incorporates a final back-translation step from English to the user's language). We discover a statistically significant English-Forcing Tax (surviving a strict Bonferroni correction) that isolates the cost of English routing from general multi-agent orchestration overhead. Forcing inter-agent communication through English reduces Exact Match accuracy by 13.0 percentage points (Spanish) up to 30.6 percentage points (Hindi) compared to native-language multi-agent execution. Using chrF scores as a diagnostic measure of English-reference lexical overlap, we find that lower overlap is strongly associated with pipeline failure, consistent with translation loss being an important contributor to the observed performance drop. These findings suggest a compelling case for native-language routing in agent frameworks when the source and target languages are typologically distant, reducing a compounding translation tax.