File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3030
3131def _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
3636def _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
4141def 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" ]
You can’t perform that action at this time.
0 commit comments