Skip to content

Commit 00cb2ec

Browse files
committed
update
1 parent 0e8556c commit 00cb2ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eval_protocol/benchmarks/test_tau_bench_retail.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@
3030

3131
def _get_retail_dataset_path() -> str:
3232
"""Get the retail dataset file path."""
33-
return str(Path(__file__).parent.parent.parent.parent / "tests" / "pytest" / "data" / "retail_dataset.jsonl")
33+
return str(Path(__file__).parent.parent.parent / "tests" / "pytest" / "data" / "retail_dataset.jsonl")
3434

3535

3636
def _get_server_script_path() -> str:
3737
"""Get the tau2 mcp server script path."""
38-
return str(Path(__file__).parent.parent.parent.parent / "examples" / "tau2_mcp" / "server.py")
38+
return str(Path(__file__).parent.parent.parent / "examples" / "tau2_mcp" / "server.py")
3939

4040

4141
def tau_bench_retail_to_evaluation_row(data: List[Dict[str, Any]]) -> List[EvaluationRow]:
4242
"""
4343
Convert entries from retail dataset to EvaluationRow objects.
4444
"""
4545
rows = []
46-
test_dir = Path(__file__).parent.parent.parent.parent / "examples" / "tau2_mcp" / "tests"
46+
test_dir = Path(__file__).parent.parent.parent / "examples" / "tau2_mcp" / "tests"
4747

4848
# Load system prompt from file so we can change it in one place
4949
domain = data[0]["environment_context"]["domain"]

0 commit comments

Comments
 (0)