scenario_id stringlengths 27 27 | scenario stringlengths 1.74M 1.86M | language stringclasses 1
value | script stringclasses 1
value | subset stringclasses 1
value |
|---|---|---|---|---|
scenario_universe_21_1qgjj6 | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_1qgjj6\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_2frnen | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_2frnen\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_2on5mg | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_2on5mg\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_44vlco | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_44vlco\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_4o5b3h | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_4o5b3h\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_4syut5 | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_4syut5\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_55o5n0 | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_55o5n0\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_5e0gvz | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_5e0gvz\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_5flf8t | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_5flf8t\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
scenario_universe_21_5fny1x | "{\"metadata\":{\"definition\":{\"scenario_id\":\"scenario_universe_21_5fny1x\",\"duration\":1000.0,(...TRUNCATED) | cmn | Hans | adaptability |
OmnilingualGAIA2
OmnilingualGAIA2 is the multilingual extension of the
GAIA2 agentic benchmark: 6400 scenarios covering 10 target languages, each machine-translated from its English reference by a pipeline that enforces a cross-surface preservation contract.
For the methodology, per-language quality analysis, and the evaluation of frontier agents on this benchmark, see the paper.
Layout
One config per (language, subset) pair, a single test split each, with the
same columns as
meta-agents-research-environments/gaia2-cli:
| column | description |
|---|---|
scenario_id |
Stable GAIA2 scenario identifier, shared across languages |
scenario |
Full scenario definition as a JSON string (see below) |
language |
ISO 639-3 code |
script |
ISO 15924 code |
subset |
GAIA2 capability subset |
import json
from datasets import load_dataset
ds = load_dataset("facebook/omnilingual-gaia2", "spa_Latn_execution", split="test")
scenario = json.loads(ds[0]["scenario"])
scenario is the standard GAIA2 scenario object, with top-level keys metadata (scenario id, duration, start time, hints, tags), apps (the serialized app universe the agent acts on), events (the oracle event DAG), version, and augmentation.
Scenario IDs are aligned across languages, so any two configs sharing a subset can be compared row for row.
Coverage
| language | execution | search | ambiguity | adaptability | total |
|---|---|---|---|---|---|
cmn_Hans |
160 | 160 | 160 | 160 | 640 |
deu_Latn |
160 | 160 | 160 | 160 | 640 |
fra_Latn |
160 | 160 | 160 | 160 | 640 |
hin_Deva |
160 | 160 | 160 | 160 | 640 |
ind_Latn |
160 | 160 | 160 | 160 | 640 |
ita_Latn |
160 | 160 | 160 | 160 | 640 |
jpn_Jpan |
160 | 160 | 160 | 160 | 640 |
por_Latn |
160 | 160 | 160 | 160 | 640 |
spa_Latn |
160 | 160 | 160 | 160 | 640 |
tur_Latn |
160 | 160 | 160 | 160 | 640 |
Running the benchmark
Materialize a config into a dataset_root of scenario JSON files, which the gaia2-cli runner consumes directly:
import json, pathlib
from datasets import load_dataset
config = "spa_Latn_execution"
dest = pathlib.Path.home() / "datasets" / "omnilingual-gaia2" / config
dest.mkdir(parents=True, exist_ok=True)
for row in load_dataset("facebook/omnilingual-gaia2", config, split="test"):
(dest / f"{row['scenario_id']}.json").write_text(row["scenario"])
gaia2-runner run-dataset --dataset ~/datasets/omnilingual-gaia2/spa_Latn_execution ...
Note on the verifier: Scoring non-English trajectories with the stock English verifier is not a fair comparison. We are shipping the multilingual verifier used for the paper's numbers in a PR on top of Meta Agents Research Environments; until it lands, treat cross-language comparisons produced with the default judge as indicative only.
Provenance and limitations
The source dataset is meta-agents-research-environments/gaia2-cli. Translations are machine-generated with a translation pipeline involving google/gemma-4-31B-it and have not been fully human-verified.
Citation
@misc{caciolai2026omnilingualgaia2evaluatingmultilingualgap,
title={OmnilingualGAIA2: Evaluating the Multilingual Gap in Frontier AI Agents},
author={Andrea Caciolai and Pere-Lluís Huguet Cabot and Chierh Cheng and Albert Ventayol-Boada and Gabriel Mejia Gonzalez and Christophe Ropers and Lucas Bandarkar and Sebastian Ruder and Darlene Sakakihara and Elliot Yun and Pierre Andrews and Grégoire Mialon and Romain Froger and Marta R. Costa-jussà},
year={2026},
eprint={2608.08775},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2608.08775},
}
- Downloads last month
- 85