$\tau^2$-Bench-Verified: Evaluating Conversational Agents in a Dual-Control Environment

December 15, 2025 · View on GitHub

python Ruff Code style: black arXiv blog

🔍 About τ²-Bench-Verified

τ²-Bench-Verified is a corrected and human verified version of the original τ²-bench benchmark. This release addresses issues discovered in the original dataset where task definitions, expected actions, and evaluation criteria did not properly align with the stated policies or database contents.

🏆 Leaderboard

RankModelAirlineRetailTelecomAverage
🥇Grok 4.1 Fast Reasoning72.00%81.40%94.74%82.71%
🥈Claude Opus 4.574.40%80.88%90.70%81.99%
🥉GPT-5.2 (reasoning: xhigh)74.27%79.65%86.99%80.30%
4GPT-5 (reasoning: med)72.00%78.25%89.50%79.92%
5Gemini Pro 370.80%77.72%89.65%79.39%
6Nova 2 Pro65.20%77.70%92.70%78.53%
7GPT-5.2 (reasoning: high)73.79%76.49%84.21%78.16%
8GPT-5.1 (reasoning: high)72.40%77.54%80.53%76.82%
9Nova 2 Omni68.80%78.30%80.00%75.70%
10Claude Sonnet 4.566.80%77.19%75.96%73.32%
11Nova 2 Lite64.80%76.50%76.00%72.43%
12GPT-5-mini (reasoning: med)68.80%73.68%67.02%69.83%
13GPT-5.2 (reasoning: med)56.40%76.14%53.68%62.07%
14Gemini Pro 2.560.00%71.26%37.89%56.38%
15Claude Haiku 4.554.00%69.12%37.19%53.44%
16GPT-5.1 (reasoning: med)54.00%59.80%39.80%51.20%
17Gemini Flash 2.544.00%57.72%22.98%41.57%

All models evaluated with gpt-5.1 as user simulator.

💰 Price / Performance

ValueModelScoreInput TokensOutput TokensTotal TokensCostScore/$
🥇Grok 4.1 Fast Reasoning82.71%27.10M0.36M27.46M$7.382.24
🥈GPT-5-mini (reasoning: med)69.83%24.88M2.53M27.41M$7.381.89
🥉Gemini Flash 2.541.57%20.05M0.23M20.28M$6.591.26
4GPT-5.2 (reasoning: med)62.07%19.90M0.37M20.27M$16.440.76
5GPT-5.1 (reasoning: med)51.20%16.98M0.67M17.65M$15.020.68
6Gemini Pro 379.39%20.07M1.69M21.75M$25.130.63
7GPT-5.2 (reasoning: high)78.16%19.95M1.10M21.05M$27.860.56
8GPT-5 (reasoning: med)79.92%18.70M3.36M22.06M$40.500.39
9Claude Haiku 4.553.44%26.50M0.53M27.04M$29.170.37
10GPT-5.1 (reasoning: high)76.82%19.17M3.48M22.64M$43.640.35
11GPT-5.2 (reasoning: xhigh)80.30%19.10M2.99M22.09M$53.120.30
12Gemini Pro 2.556.38%32.25M1.93M34.18M$59.640.19
13Claude Sonnet 4.573.32%31.10M0.53M31.63M$101.210.14
14Claude Opus 4.581.99%26.83M0.51M27.33M$146.790.11

Sorted by value (Score/$). Costs reflect actual API charges including prompt caching discounts. Values normalized (averaged over 5 runs). Cost excludes simulated user.

Why This Version?

During verification of the original τ²-bench, we identified several categories of issues:

  1. Policy Compliance Issues: Tasks where expected actions violated the stated domain policies (e.g., offering compensation when policy doesn't allow it, cancelling flights that have already departed)

  2. Database Accuracy Issues: Tasks with incorrect item IDs, passenger information, or payment method references that didn't match the actual database

  3. Logical Consistency Issues: Tasks with impossible scenarios (e.g., exchanging for identical items, which policy forbids)

  4. Evaluation Ambiguity Issues: Task instructions that were too vague, leading to inconsistent evaluation outcomes

All fixes have been carefully documented with references to the specific policy rules that justify each change.

📋 View Complete List of Fixes - Detailed documentation of every change made, including policy references.

Representative Examples of Corrections

The following table illustrates the types of issues we identified and corrected:

(a) τ-Retail example (b) τ-Airline example

📘 Wiki policy

Exchanges must involve a different product option of the same item. Re-using the exact same option is not allowed.

📘 Wiki policy

If a flight is delayed, a certificate can be issued only after the reservation is changed or cancelled.

❌ Ground truth (incorrect)

Exchange item ID 8069050545, with SAME item 8069050545

Error: Both IDs are identical — violating the rule that exchanges must select a different option.

❌ Ground truth (incorrect)

  • get_user_details()
  • send_certificate(amount = $150)

Error: A certificate is issued directly, without performing the required change/cancellation.

✅ Correct solution

Exchange item ID 8069050545, with different item 3609437808

Fix: New product option must differ from the old one.

✅ Correct solution

  • get_user_details()

Fix: The user doesn't want to change or cancel the flight so no certificate is issued.

Two representative examples of incorrect ground-truth annotations found in τ-Bench. (a) In Retail, the solution reuses the same product ID, violating the policy that exchanges require a different option. (b) In Airline, the solution issues a certificate without first confirming and changing/cancelling the reservation. See FIXES.md for the complete list of corrections.

System Architecture

The figures below illustrate the τ²-bench settings:

System Overview
Figure 1: τ²-bench-Verified allows users to interact with the agent and the environment
Trajectory
Figure 2: Trajectory of a conversation between an agent and a user

Overview

τ2\tau^2-bench-Verified implements a simulation framework for evaluating customer service agents across various domains.

τ2\tau^2-bench-Verified is the new iteration of the original τ\tau-bench, featuring a corrected and human verified version of the original τ²-bench benchmark. This release addresses issues discovered in the original dataset where task definitions, expected actions, and evaluation criteria did not properly align with the stated policies or database contents.

Each domain specifies:

  • a policy that the agent must follow
  • a set of tools that the agent can use
  • a set of tasks to evaluate the agent's performance
  • Optionally: A set of tools that the user simulator can use

Domains are:

  • mock
  • airline
  • retail
  • telecom

All the information that an agent developer needs to build an agent for a domain can be accessed through the domain's API docs. See View domain documentation for more details.

Installation

  1. Clone the repository:
git clone https://github.com/amazon-agi/tau2-bench-verified
cd tau2-bench-verified
  1. Create a new environment (optional)

τ2\tau^2-bench requires Python 3.10 or higher. You may create and activate a new environment:

python -m venv .venv
source .venv/bin/activate
  1. Install tau2
pip install -e .

This will enable you to run the tau2 command.

Note: If you use pip install . (without -e), you'll need to set the TAU2_DATA_DIR environment variable to point to your data directory:

export TAU2_DATA_DIR=/path/to/your/tau2-bench-verified/data

Check your data directory setup:

After installation, you can verify that your data directory is correctly configured by running:

tau2 check-data

This command will check if the data directory exists and print instructions if it is missing.

To remove all the generated files and the virtual environment, run:

make clean

Quick Start

Setup LLM API keys

We use LiteLLM to manage LLM APIs, so you can use any LLM provider supported by LiteLLM.

To provide your API keys, copy .env.example as .env and edit it to include your API keys.

Run agent evaluation

To run a test evaluation on only 5 tasks with 1 trial per task, run:

tau2 run \ 
--domain airline \
--agent-llm gpt-4.1 \
--user-llm gpt-5.1 \
--num-trials 1 \
--num-tasks 5

Results will be saved in data/tau2/simulations/.

💡 Tip: For full agent evaluation that matches the original τ²-bench-Verified methodology, remove --num-tasks and use --task-split base to evaluate on the complete task set.

Command Line Interface

The tau2 command provides a unified interface for all functionality:

Running Benchmark

tau2 run \
  --domain <domain> \
  --agent-llm <llm_name> \
  --user-llm <llm_name> \
  --num-trials <trial_count> \
  --task-ids <task_ids> \
  --max-concurrency <concurrent_sims> \
  ...

Interactive Play Mode

tau2 play

Experience τ²-bench-Verified from either perspective! The play mode allows you to:

  • Play as Agent: Manually control the agent's responses and tool calls
  • Play as User: Control the user while an LLM agent handles requests (available in domains with user tools like telecom)
  • Understand tasks by walking through scenarios step-by-step
  • Test strategies before implementing them in code
  • Choose task splits to practice on training data or test on held-out tasks

This is perfect for:

  • Getting familiar with domain policies and tools from both perspectives
  • Debugging task scenarios and conversation flows
  • Developing intuition for agent strategies
  • Testing user behavior and agent responses
  • Training yourself before training your model!

See the Gym Documentation for more details on using the gymnasium interface programmatically, including the AgentGymEnv (play as agent) and UserGymEnv (play as user).

Viewing Results

tau2 view

This tool allows you to:

  • Browse simulation files (in data/tau2/simulations/)
  • View agent performance metrics
  • View a particular simulation
  • View task details

View domain documentation

tau2 domain <domain>

Visit http://127.0.0.1:8004/redoc to see the domain policy and API documentation.

domain_viewer1

Check data configuration

tau2 check-data

This command checks if your data directory is properly configured and all required files are present.

Experiments

Experimental Code Directory

The @experiments/ directory contains experimental features and research code that extends beyond the core tau2 benchmark. This directory is designed for community contributions of innovative approaches, prototypes, and new features that are not part of the core evaluation framework.

  • Purpose: Research code and experimental features
  • Location: src/experiments/
  • Usage: Each experimental component has its own README with documentation
  • Status: Experimental code is provided as-is and may not be fully tested or supported

For more details, see the experiments README.

Running Ablation Studies (No User, or Agent with Oracle Plan)

telecom domain enables running ablation studies.

  1. Running an LLM in no-user mode. In this mode, the LLM is given all the tools and the information upfront. Just choose llm_agent_solo as the agent and dummy_user as the user.
tau2 run \
  --domain telecom \
  --agent llm_agent_solo \
  --agent-llm gpt-4.1 \
  --user dummy_user \
  ...
  1. Running an LLM in oracle-plan mode. In this mode, the LLM is given an oracle plan ahead of time alleviating the need for action planning. Just choose llm_agent_gt as the agent.
tau2 run \
  --domain telecom \
  --agent llm_agent_gt \
  --agent-llm gpt-4.1 \
  --user-llm gpt-4.1 \
  ...

Running Telecom Domain with Workflow Policy

To test the impact of policy format, we provide an additional "workflow" policy for the telecom domain. To run using this policy, use the telecom-workflow domain.

tau2 run \
  --domain telecom-workflow \
  --agent-llm gpt-4.1 \
  --user-llm gpt-5.1 \
  ...

Domains

For all the details see the domains README.

Basics

  • Code is located in src/tau2/domains/
  • Data is located in data/tau2/domains/
  • Each domain has its own configuration and task definitions

View domain-specific policy and API docs:

Run the following command to see the domain policy and API documentation.

tau2 env <domain>

Then visit http://127.0.0.1:8004/redoc

Environment CLI (beta)

An interactive command-line interface for directly querying and testing domain environments. Features:

  • Interactive query interface with domain-specific tools
  • Support for multiple domains (airline, mock, etc.)
  • Session management with history

To use:

make env-cli

Available commands:

  • :q - quit the program
  • :d - change domain
  • :n - start new session (clears history)

Example usage:

$ make env-cli

Welcome to the Environment CLI!
Connected to airline domain.

Query (:n new session, :d change domain, :q quit)> What flights are available from SF to LA tomorrow?
Assistant: Let me check the flight availability for you...
[Flight details will appear here]

The Environment CLI is useful for:

  • Testing domain tools and queries
  • Debugging environment responses
  • Exploring available domain functionality
  • Quick domain interaction without starting the full server stack

Run tests

To run the test suite use the command

make test

Config

To configure the framework, see the config file.

LLM Calls caching

LLM call caching is disabled by default.

To enable LLM calls caching: - Make sure redis is running. - Update the redis config in config.py if necessary. - Set LLM_CACHE_ENABLED to True in config.py

Evaluate Your Own Agent

For local or remote agent evaluation, see our agent developer guide.

Contributing

We welcome contributions to τ²-bench! Whether you're fixing bugs, adding new features, creating new domains, or contributing experimental research code, please see our Contributing Guide for detailed guidelines on:

  • Opening issues before starting work
  • Branch naming conventions and development workflow
  • Code quality standards and testing requirements
  • Pull request guidelines for clean, reviewable contributions
  • Domain and experimental contributions specific guidelines

For experimental features and research code, check out the @experiments/ directory.

Orchestration Sequence Diagram

sequenceDiagram
    participant O as Orchestrator
    participant A as Agent
    participant U as UserSimulator
    participant E as Environment

    Note over O: Initialize(task)
    rect rgb(100, 150, 150)
        O->>A: get_init_state_info(message_history)
        A->>O: agent_state_info
        O->>U: get_init_state_info(message_history)
        U->>O: user_state_info
        O->>E: set_state(initialization_data, initialization_actions, message_history)
    end
    Note over O: Start simulation
    loop Pass messages between Agent, User, and Environment

        alt Agent/Env to User
            rect rgb(200, 150, 150)
            O->>U: generate_next_message(msg, user_state_info)
            U-->>O: (user_msg, user_state_info)
            end
            Note over O: Check if user_msg is STOP
        else User/Env to Agent
            rect rgb(100, 200, 100)
            O->>A: generate_next_message(msg, agent_state_info)
            A-->>O: (assistant_msg, agent_state_info)
            Note over O: Check if too many errors
            end
        else User/Agent to Environment
            rect rgb(150, 150, 200)
            O->>E: get_response(tool_call)
            E-->>O: tool_message
            end
        end
        Note over O: Check if max turns reached.
    end
    Note over O: Return simulation run

Relationship to Original τ²-bench

τ²-Bench-Verified differs from the original τ²-bench only in the dataset. The evaluation framework, orchestrator, domains, and all other code remain identical to the original τ²-bench implementation. We have only corrected task definitions, expected actions, and evaluation criteria to properly align with stated policies and database contents.

If you use τ²-Bench-Verified, please cite the original τ²-bench paper and the τ²-bench-Verified paper:

τ²-Bench-Verified Paper: 📄 PDF

@misc{cuadron2025sabersmallactionsbig,
      title={SABER: Small Actions, Big Errors - Safeguarding Mutating Steps in LLM Agents}, 
      author={Alejandro Cuadron and Pengfei Yu and Yang Liu and Arpit Gupta},
      year={2025},
      eprint={2512.07850},
      archivePrefix={arXiv},
      primaryClass={cs.LG},
      url={https://arxiv.org/abs/2512.07850}, 
}

Original τ²-Bench Paper:

@misc{barres2025tau2,
      title={$\tau^2$-Bench: Evaluating Conversational Agents in a Dual-Control Environment}, 
      author={Victor Barres and Honghua Dong and Soham Ray and Xujie Si and Karthik Narasimhan},
      year={2025},
      eprint={2506.07982},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2506.07982}, 
}