Files
sci-gui-agent-benchmark/.vscode/launch.json
2025-05-27 05:14:33 +00:00

28 lines
861 B
JSON

{
// "--path_to_vm",
// "i-00017dfb534d22011",
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "/home/ubuntu/OSWorld/run_multienv.py",
"console": "integratedTerminal",
"args":[
"--headless",
"--observation_type",
"screenshot",
"--model",
"gpt-4-turbo",
"--result_dir",
"./results_aws",
"--test_all_meta_path",
"evaluation_examples/test_small.json",
"--region",
"us-east-1"
],
"python": "/home/ubuntu/miniconda3/envs/osworld/bin/python"
}
]
}