vibrantlabsai/tau2-infinity-wg
tau2-infinity-wg Airline customer-service tasks mined by world-gen adversarial failure-search — each task is an artifact on which a target model diverges from an oracle model. Companion to vibrantlabsai/tau2-infinity; consumed by the tau2_infinity_wg Prime Intellect RL environment. Overview Unlike tau2-infinity (adaptively generated toward a target difficulty band), tasks here are discovered by hypothesis-disproof: generate a hypothesized failure mode, confirm the… See the full description on the dataset page: https://huggingface.co/datasets/vibrantlabsai/tau2-infinity-wg.
tau2-infinity-wg
Airline customer-service tasks mined by world-gen adversarial failure-search — each task is an artifact on which a target model diverges from an oracle model. Companion to vibrantlabsai/tau2-infinity; consumed by the tau2_infinity_wg Prime Intellect RL environment.
Overview
Unlike tau2-infinity (adaptively generated toward a target difficulty band), tasks here are discovered by hypothesis-disproof: generate a hypothesized failure mode, confirm the oracle resolves it cleanly while the target fails, then keep only cases where both hold. This biases the set toward borderline/adversarial scenarios rather than uniformly hard ones.
Each task pins an initial airline world (users, flights, reservations) and a set of objectives the agent must satisfy while handling a call from an LLM-simulated customer with a fixed personality and some hidden information.
Dataset Schema
Tasks
Usage
from datasets import load_dataset
import json
ds = load_dataset("vibrantlabsai/tau2-infinity-wg", split="test")
for task in ds:
print(task["task_id"], task["failure_category"])
objectives = json.loads(task["objectives"])
world = json.loads(task["world_state"])License
Apache 2.0
