aws_communication_success

This commit is contained in:
yuanmengqi
2025-05-27 05:14:33 +00:00
parent a845824f06
commit b7e83a62ee
12 changed files with 1946 additions and 38 deletions

28
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,28 @@
{
// "--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"
}
]
}