├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── publish-docker.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── Develop-Agent.md ├── Develop-Tasks.md └── Development-Tips.md ├── img ├── architecture-azure.png ├── architecture-local.png ├── azure_blobstore.png ├── azure_create_ml.png ├── azure_create_ml2.png ├── azure_ml_portal.png ├── azure_notebook.png ├── azure_quota.png ├── banner.png ├── local_dev_mode_shared_folder.png ├── local_prepare_logs_successful.png ├── local_prepare_screen_setup.png ├── local_prepare_screen_unattend.png ├── local_prepare_storage_successful.png ├── logo.png └── main.png ├── requirements.txt ├── scripts ├── azure_files │ ├── compute-instance-startup.sh │ └── run_entry.py ├── build-container-image.sh ├── experiments.json ├── run-local.sh ├── run.sh ├── run_azure.py ├── shared.sh └── show_azure.py └── src └── win-arena-container ├── Dockerfile-WinArena ├── Dockerfile-WinArena-Base ├── Dockerfile-WinArena-Base.dockerignore ├── Dockerfile-WinArena.dockerignore ├── client ├── desktop_env │ ├── __init__.py │ ├── assets │ │ ├── cursor.png │ │ ├── history_empty.sqlite │ │ └── icon.jpg │ ├── controllers │ │ ├── __init__.py │ │ ├── python.py │ │ ├── setup.py │ │ └── vm.py │ ├── envs │ │ ├── __init__.py │ │ ├── actions.py │ │ └── desktop_env.py │ └── evaluators │ │ ├── README.md │ │ ├── __init__.py │ │ ├── getters │ │ ├── __init__.py │ │ ├── calc.py │ │ ├── chrome.py │ │ ├── edge.py │ │ ├── file.py │ │ ├── fileexplorer.py │ │ ├── general.py │ │ ├── gimp.py │ │ ├── impress.py │ │ ├── info.py │ │ ├── microsoftpaint.py │ │ ├── misc.py │ │ ├── msedge.py │ │ ├── replay.py │ │ ├── settings.py │ │ ├── vlc.py │ │ ├── vscode.py │ │ └── windows_clock.py │ │ └── metrics │ │ ├── __init__.py │ │ ├── basic_os.py │ │ ├── chrome.py │ │ ├── docs.py │ │ ├── edge.py │ │ ├── general.py │ │ ├── gimp.py │ │ ├── libreoffice.py │ │ ├── others.py │ │ ├── pdf.py │ │ ├── slides.py │ │ ├── table.py │ │ ├── thunderbird.py │ │ ├── utils.py │ │ ├── vlc.py │ │ └── vscode.py ├── evaluation_examples_windows │ ├── create_json.py │ ├── examples │ │ ├── chrome │ │ │ ├── 030eeff7-b492-4218-b312-701ec99ee0cc-wos.json │ │ │ ├── 06fe7178-4491-4589-810f-2e2bc9502122-wos.json │ │ │ ├── 121ba48f-9e17-48ce-9bc6-a4fb17a7ebba-wos.json │ │ │ ├── 2ae9ba84-3a0d-4d4c-8338-3a1478dc5fe3-wos.json │ │ │ ├── 35253b65-1c19-4304-8aa4-6884b8218fc0-wos.json │ │ │ ├── 44ee5668-ecd5-4366-a6ce-c1c9b8d4e938-wos.json │ │ │ ├── 480bcfea-d68f-4aaa-a0a9-2589ef319381-wos.json │ │ │ ├── 7a5a7856-f1b6-42a4-ade9-1ca81ca0f263-wos.json │ │ │ ├── 7b6c7e24-c58a-49fc-a5bb-d57b80e5b4c3-wos.json │ │ │ ├── 82bc8d6a-36eb-4d2d-8801-ef714fb1e55a-wos.json │ │ │ ├── 9656a811-9b5b-4ddf-99c7-5117bcef0626-wos.json │ │ │ ├── 99146c54-4f37-4ab8-9327-5f3291665e1e-wos.json │ │ │ ├── a96b564e-dbe9-42c3-9ccf-b4498073438a-wos.json │ │ │ ├── af630914-714e-4a24-a7bb-f9af687d3b91-wos.json │ │ │ ├── b070486d-e161-459b-aa2b-ef442d973b92-wos.json │ │ │ ├── bb5e4c0d-f964-439c-97b6-bdb9747de3f4-wos.json │ │ │ └── e1e75309-3ddb-4d09-92ec-de869c928143-wos.json │ │ ├── clock │ │ │ ├── 02F10F89-7171-4D37-8550-A00BA8930CDF-2-WOS.json │ │ │ ├── 02F10F89-7171-4D37-8550-A00BA8930CDF-WOS.json │ │ │ ├── 91A30BE9-0E11-4374-8D43-41D4D097080A-WOS-2.json │ │ │ └── 91A30BE9-0E11-4374-8D43-41D4D097080A-WOS.json │ │ ├── file_explorer │ │ │ ├── 016c9a9d-f2b9-4428-8fdb-f74f4439ece6-WOS.json │ │ │ ├── 0c9dda13-428c-492b-900b-f48562111f93-WOS.json │ │ │ ├── 1876fe7f-6fdc-5dd6-c9e0-237d4c8411f0-WOS.json │ │ │ ├── 22e529ff-4199-4ffb-95b7-8e5be9b7a860-WOS.json │ │ │ ├── 2b0c0844-bd4f-42ba-a25e-afb4267d51e2-WOS.json │ │ │ ├── 2d292a2d-686b-4e72-80f7-af6c232b1258-WOS.json │ │ │ ├── 34a4fee9-e52e-4a4a-96d2-68d35091504a-WOS.json │ │ │ ├── 3bad5766-5186-42be-abe1-12eacc798d3a-WOS.json │ │ │ ├── 5316686e-5688-4115-be24-052037df599f-WOS.json │ │ │ ├── 5548314e-d807-4e9e-97e9-b3a4f9fd634f-WOS.json │ │ │ ├── 7AB09EF1-331B-4A21-90C9-996ADE3B6E1A-WOS.json │ │ │ ├── 7c70e16b-e14f-4baa-b046-3e022b2d0305-WOS.json │ │ │ ├── ac46b5cb-616a-46e0-b287-9628fd0dab06-WOS.json │ │ │ ├── b0c9dac6-52ba-4937-aabb-b0abdc2a8138-WOS.json │ │ │ ├── b12921b2-8772-4667-a960-067309906dd4-WOS.json │ │ │ ├── b12b2d3a-7da1-4aeb-97cc-6026d3975210-WOS.json │ │ │ ├── b8ab0ae1-d2b4-4e6f-b609-df7d76b456d7-WOS.json │ │ │ ├── e27984c7-968c-48d7-b2c3-6e45cdcc5249-WOS.json │ │ │ └── f934d80d-84d2-4b46-953c-89f77b5a709a-WOS.json │ │ ├── libreoffice_calc │ │ │ ├── 01b269ae-2111-4a07-81fd-3fcd711993b0-WOS.json │ │ │ ├── 035f41ba-6653-43ab-aa63-c86d449d62e5-WOS.json │ │ │ ├── 04d9aeaf-7bed-4024-bedb-e10e6f00eb7f-WOS.json │ │ │ ├── 0a2e43bf-b26c-4631-a966-af9dfa12c9e5-WOS.json │ │ │ ├── 0acbd372-ca7a-4507-b949-70673120190f-WOS.json │ │ │ ├── 0bf05a7d-b28b-44d2-955a-50b41e24012a-WOS.json │ │ │ ├── 0cecd4f3-74de-457b-ba94-29ad6b5dafb6-WOS.json │ │ │ ├── 1d17d234-e39d-4ed7-b46f-4417922a4e7c-WOS.json │ │ │ ├── 1de60575-bb6e-4c3d-9e6a-2fa699f9f197-WOS.json │ │ │ ├── 1e8df695-bd1b-45b3-b557-e7d599cf7597-WOS.json │ │ │ ├── 21ab7b40-77c2-4ae6-8321-e00d3a086c73-WOS.json │ │ │ ├── 26a8440e-c166-4c50-aef4-bfb77314b46b-WOS.json │ │ │ ├── 30e3e107-1cfb-46ee-a755-2cd080d7ba6a-WOS.json │ │ │ ├── 39aa4e37-dc91-482e-99af-132a612d40f3-WOS.json │ │ │ ├── 4de54231-e4b5-49e3-b2ba-61a0bec721c0-WOS.json │ │ │ ├── 4e6fcf72-daf3-439f-a232-c434ce416af6-WOS.json │ │ │ ├── 4f07fbe9-70de-4927-a4d5-bb28bc12c52c-WOS.json │ │ │ ├── 5d353deb-c4b0-4126-a99e-5490817b48cb-WOS.json │ │ │ ├── 5f8601f8-6e90-4d2c-91bb-eb5836ad1d5c-WOS.json │ │ │ ├── 7a4e4bc8-922c-4c84-865c-25ba34136be1-WOS.json │ │ │ ├── 7e429b8d-a3f0-4ed0-9b58-08957d00b127-WOS.json │ │ │ ├── 7efeb4b1-3d19-4762-b163-63328d66303b-WOS.json │ │ │ ├── 8b1ce5f2-59d2-4dcc-b0b0-666a714b9a14-WOS.json │ │ │ └── 9ed02102-6b28-4946-8339-c028166e9512-WOS.json │ │ ├── libreoffice_writer │ │ │ ├── 0810415c-bde4-4443-9047-d5f70165a697-WOS.json │ │ │ ├── 0a0faba3-5580-44df-965d-f562a99b291c-WOS.json │ │ │ ├── 0b17a146-2934-46c7-8727-73ff6b6483e8-WOS.json │ │ │ ├── 0e47de2a-32e0-456c-a366-8c607ef7a9d2-WOS.json │ │ │ ├── 0e763496-b6bb-4508-a427-fad0b6c3e195-WOS.json │ │ │ ├── 3ef2b351-8a84-4ff2-8724-d86eae9b842e-WOS.json │ │ │ ├── 41c621f7-3544-49e1-af8d-dafd0f834f75-WOS.json │ │ │ ├── 4bcb1253-a636-4df4-8cb0-a35c04dfef31-WOS.json │ │ │ ├── 6a33f9b9-0a56-4844-9c3f-96ec3ffb3ba2-WOS.json │ │ │ ├── 72b810ef-4156-4d09-8f08-a0cf57e7cefe-WOS.json │ │ │ ├── 88fe4b2d-3040-4c70-9a70-546a47764b48-WOS.json │ │ │ ├── 936321ce-5236-426a-9a20-e0e3c5dc536f-WOS.json │ │ │ ├── INF-bb8ccc78-479f-4a2f-a71e-d565e439436b-WOS.json │ │ │ ├── adf5e2c3-64c7-4644-b7b6-d2f0167927e7-WOS.json │ │ │ ├── b21acd93-60fd-4127-8a43-2f5178f4a830-WOS.json │ │ │ ├── d53ff5ee-3b1a-431e-b2be-30ed2673079b-WOS.json │ │ │ ├── e246f6d8-78d7-44ac-b668-fcf47946cb50-WOS.json │ │ │ ├── e528b65e-1107-4b8c-8988-490e4fece599-WOS.json │ │ │ └── f178a4a9-d090-4b56-bc4c-4b72a61a035d-WOS.json │ │ ├── microsoft_paint │ │ │ ├── 15f8de6e-3d39-40e4-af17-bdbb2393c0d9-WOS.json │ │ │ ├── 3544ac9a-6aee-4a0b-a203-bc7b59b272b6-WOS.json │ │ │ └── 44dbac63-32bf-4cd2-81b4-ad6803ec812d-WOS.json │ │ ├── msedge │ │ │ ├── 004587f8-6028-4656-94c1-681481abbc9c-wos.json │ │ │ ├── 049d3788-c979-4ea6-934d-3a35c4630faf-WOS.json │ │ │ ├── 1376d5e7-deb7-471a-9ecc-c5d4e155b0c8-wos.json │ │ │ ├── 1a1ec621-b675-4099-96a9-f702dc27afb4-wos.json │ │ │ ├── 1c9d2c6c-ae4b-4359-9a93-9d3c42f48417-wos.json │ │ │ ├── 2acd62b4-a2ab-44a7-a7e3-f5227bbd8324-wos.json │ │ │ ├── 4d34ff3b-5cc8-44b2-a272-fb07927e996e-WOS.json │ │ │ ├── 58f493b5-5a96-4450-99ca-7cebe144c7e5-wos.json │ │ │ ├── 5b46f4a4-1a78-4860-ad92-76e051fa7efc-wos.json │ │ │ ├── 98cfcec4-c74e-4faa-b70d-664fb0a1d457-wos.json │ │ │ ├── b27399ae-e91a-4055-9406-472372e0f5c7-wos.json │ │ │ ├── bd3e9ea0-a58a-45b3-97be-b418a7e2c0fd-WOS.json │ │ │ └── ccb22f83-0831-4655-b557-225144b70c71-wos.json │ │ ├── notepad │ │ │ ├── 366de66e-cbae-4d72-b042-26390db2b145-WOS.json │ │ │ └── a7d4b6c5-569b-452e-9e1d-ffdb3d431d15-WOS.json │ │ ├── settings │ │ │ ├── 37e10fc4-b4c5-4b02-a65c-bfae8bc51d3f-wos.json │ │ │ ├── 46adf721-2949-4426-b069-010b7c128d8f-wos.json │ │ │ ├── 9504989a-0d6e-4017-aefb-d359f6c752aa-wos.json │ │ │ ├── a659b26e-4e31-40c1-adaf-34742b6c44ac-wos.json │ │ │ └── e8f68f22-1f6a-4cba-a97a-ac611bb4c67b-wos.json │ │ ├── vlc │ │ │ ├── 215dfd39-f493-4bc3-a027-8a97d72c61bf-WOS.json │ │ │ ├── 386dbd0e-0241-4a0a-b6a2-6704fba26b1c-WOS.json │ │ │ ├── 8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-2-WOS.json │ │ │ ├── 8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-WOS.json │ │ │ ├── 8f080098-ddb1-424c-b438-4e96e5e4786e-WOS.json │ │ │ ├── 9195653c-f4aa-453d-aa95-787f6ccfaae9-2-WOS.json │ │ │ ├── 9195653c-f4aa-453d-aa95-787f6ccfaae9-WOS.json │ │ │ ├── INF-0d95d28a-9587-433b-a805-1fbe5467d598-WOS.json │ │ │ ├── INF-5ac2891a-eacd-4954-b339-98abba077adb-WOS.json │ │ │ ├── INF-7882ed6e-bece-4bf0-bada-c32dc1ddae72-WOS.json │ │ │ ├── INF-a1c3ab35-02de-4999-a7ed-2fd12c972c6e-WOS.json │ │ │ ├── INF-cb130f0d-d36f-4302-9838-b3baf46139b6-WOS.json │ │ │ ├── INF-d1ba14d0-fef8-4026-8418-5b581dc68ca0-WOS.json │ │ │ ├── INF-d70666e4-7348-42c7-a06a-664094c5df3c-WOS.json │ │ │ ├── a5bbbcd5-b398-4c91-83d4-55e1e31bbb81-WOS.json │ │ │ ├── aa4b5023-aef6-4ed9-bdc9-705f59ab9ad6-WOS.json │ │ │ ├── d06f0d4d-2cd5-4ede-8de9-598629438c6e-WOS.json │ │ │ ├── efcf0d81-0835-4880-b2fd-d866e8bc2294-WOS.json │ │ │ ├── f3977615-2b45-4ac5-8bba-80c17dbe2a37-WOS.json │ │ │ ├── fba2c100-79e8-42df-ae74-b592418d54f4-WOS.json │ │ │ └── fcd3d211-80f9-53eg-bf85-c603529e65g5-1-WOS.json │ │ ├── vs_code │ │ │ ├── 0ed39f63-6049-43d4-ba4d-5fa2fe04a951-WOS.json │ │ │ ├── 276cc624-87ea-4f08-ab93-f770e3790175-2-WOS.json │ │ │ ├── 276cc624-87ea-4f08-ab93-f770e3790175-WOS.json │ │ │ ├── 4e60007a-f5be-4bfc-9723-c39affa0a6d3-2-WOS.json │ │ │ ├── 4e60007a-f5be-4bfc-9723-c39affa0a6d3-WOS.json │ │ │ ├── 57242fad-77ca-454f-b71b-f187181a9f23-WOS.json │ │ │ ├── 5e2d93d8-8ad0-4435-b150-1692aacaa994-WOS.json │ │ │ ├── 70745df8-f2f5-42bd-8074-fbc10334fcc5-2-WOS.json │ │ │ ├── 70745df8-f2f5-42bd-8074-fbc10334fcc5-WOS.json │ │ │ ├── 930fdb3b-11a8-46fe-9bac-577332e2640e-WOS.json │ │ │ ├── 9439a27b-18ae-42d8-9778-5f68f891805e-WOS.json │ │ │ ├── 982d12a5-beab-424f-8d38-d2a48429e511-2-WOS.json │ │ │ ├── 982d12a5-beab-424f-8d38-d2a48429e511-WOS.json │ │ │ ├── 9d425400-e9b2-4424-9a4b-d4c7abac4140-WOS.json │ │ │ ├── INF-7aeae0e2-70ee-4705-821d-1bba5d5b2ddd-WOS.json │ │ │ ├── INF-7c4cc09e-7a92-40dd-8338-b2286535c4ed-WOS.json │ │ │ ├── INF-847a96b6-df94-4927-97e6-8cc9ea66ced7-WOS.json │ │ │ ├── INF-971cbb5b-3cbf-4ff7-9e24-b5c84fcebfa6-WOS.json │ │ │ ├── INF-dcbe20e8-647f-4f1d-8696-f1c5bbb570e3-WOS.json │ │ │ ├── c6bf789c-ba3a-4209-971d-b63abf0ab733-WOS.json │ │ │ ├── e2b5e914-ffe1-44d2-8e92-58f8c5d92bb2-WOS.json │ │ │ ├── ea98c5d7-3cf9-4f9b-8ad3-366b58e0fcae-WOS.json │ │ │ ├── eabc805a-bfcf-4460-b250-ac92135819f6-WOS.json │ │ │ └── ec71221e-ac43-46f9-89b8-ee7d80f7e1c5-WOS.json │ │ └── windows_calc │ │ │ ├── 28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-2.json │ │ │ ├── 28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-3.json │ │ │ └── 28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS.json │ ├── examples_noctxt │ │ ├── chrome │ │ │ ├── 030eeff7-b492-4218-b312-701ec99ee0cc-wos.json │ │ │ ├── 06fe7178-4491-4589-810f-2e2bc9502122-wos.json │ │ │ ├── 121ba48f-9e17-48ce-9bc6-a4fb17a7ebba-wos.json │ │ │ ├── 2ae9ba84-3a0d-4d4c-8338-3a1478dc5fe3-wos.json │ │ │ ├── 35253b65-1c19-4304-8aa4-6884b8218fc0-wos.json │ │ │ ├── 44ee5668-ecd5-4366-a6ce-c1c9b8d4e938-wos.json │ │ │ ├── 480bcfea-d68f-4aaa-a0a9-2589ef319381-wos.json │ │ │ ├── 7a5a7856-f1b6-42a4-ade9-1ca81ca0f263-wos.json │ │ │ ├── 7b6c7e24-c58a-49fc-a5bb-d57b80e5b4c3-wos.json │ │ │ ├── 82bc8d6a-36eb-4d2d-8801-ef714fb1e55a-wos.json │ │ │ ├── 9656a811-9b5b-4ddf-99c7-5117bcef0626-wos.json │ │ │ ├── 99146c54-4f37-4ab8-9327-5f3291665e1e-wos.json │ │ │ ├── a96b564e-dbe9-42c3-9ccf-b4498073438a-wos.json │ │ │ ├── af630914-714e-4a24-a7bb-f9af687d3b91-wos.json │ │ │ ├── b070486d-e161-459b-aa2b-ef442d973b92-wos.json │ │ │ ├── bb5e4c0d-f964-439c-97b6-bdb9747de3f4-wos.json │ │ │ └── e1e75309-3ddb-4d09-92ec-de869c928143-wos.json │ │ ├── clock │ │ │ ├── 02F10F89-7171-4D37-8550-A00BA8930CDF-2-WOS.json │ │ │ ├── 02F10F89-7171-4D37-8550-A00BA8930CDF-WOS.json │ │ │ ├── 91A30BE9-0E11-4374-8D43-41D4D097080A-WOS-2.json │ │ │ └── 91A30BE9-0E11-4374-8D43-41D4D097080A-WOS.json │ │ ├── file_explorer │ │ │ ├── 016c9a9d-f2b9-4428-8fdb-f74f4439ece6-WOS.json │ │ │ ├── 0c9dda13-428c-492b-900b-f48562111f93-WOS.json │ │ │ ├── 1876fe7f-6fdc-5dd6-c9e0-237d4c8411f0-WOS.json │ │ │ ├── 22e529ff-4199-4ffb-95b7-8e5be9b7a860-WOS.json │ │ │ ├── 2b0c0844-bd4f-42ba-a25e-afb4267d51e2-WOS.json │ │ │ ├── 2d292a2d-686b-4e72-80f7-af6c232b1258-WOS.json │ │ │ ├── 34a4fee9-e52e-4a4a-96d2-68d35091504a-WOS.json │ │ │ ├── 3bad5766-5186-42be-abe1-12eacc798d3a-WOS.json │ │ │ ├── 5316686e-5688-4115-be24-052037df599f-WOS.json │ │ │ ├── 5548314e-d807-4e9e-97e9-b3a4f9fd634f-WOS.json │ │ │ ├── 7AB09EF1-331B-4A21-90C9-996ADE3B6E1A-WOS.json │ │ │ ├── 7c70e16b-e14f-4baa-b046-3e022b2d0305-WOS.json │ │ │ ├── ac46b5cb-616a-46e0-b287-9628fd0dab06-WOS.json │ │ │ ├── b0c9dac6-52ba-4937-aabb-b0abdc2a8138-WOS.json │ │ │ ├── b12921b2-8772-4667-a960-067309906dd4-WOS.json │ │ │ ├── b12b2d3a-7da1-4aeb-97cc-6026d3975210-WOS.json │ │ │ ├── b8ab0ae1-d2b4-4e6f-b609-df7d76b456d7-WOS.json │ │ │ ├── e27984c7-968c-48d7-b2c3-6e45cdcc5249-WOS.json │ │ │ └── f934d80d-84d2-4b46-953c-89f77b5a709a-WOS.json │ │ ├── libreoffice_calc │ │ │ ├── 01b269ae-2111-4a07-81fd-3fcd711993b0-WOS.json │ │ │ ├── 035f41ba-6653-43ab-aa63-c86d449d62e5-WOS.json │ │ │ ├── 04d9aeaf-7bed-4024-bedb-e10e6f00eb7f-WOS.json │ │ │ ├── 0a2e43bf-b26c-4631-a966-af9dfa12c9e5-WOS.json │ │ │ ├── 0acbd372-ca7a-4507-b949-70673120190f-WOS.json │ │ │ ├── 0bf05a7d-b28b-44d2-955a-50b41e24012a-WOS.json │ │ │ ├── 0cecd4f3-74de-457b-ba94-29ad6b5dafb6-WOS.json │ │ │ ├── 1d17d234-e39d-4ed7-b46f-4417922a4e7c-WOS.json │ │ │ ├── 1de60575-bb6e-4c3d-9e6a-2fa699f9f197-WOS.json │ │ │ ├── 1e8df695-bd1b-45b3-b557-e7d599cf7597-WOS.json │ │ │ ├── 21ab7b40-77c2-4ae6-8321-e00d3a086c73-WOS.json │ │ │ ├── 26a8440e-c166-4c50-aef4-bfb77314b46b-WOS.json │ │ │ ├── 30e3e107-1cfb-46ee-a755-2cd080d7ba6a-WOS.json │ │ │ ├── 39aa4e37-dc91-482e-99af-132a612d40f3-WOS.json │ │ │ ├── 4de54231-e4b5-49e3-b2ba-61a0bec721c0-WOS.json │ │ │ ├── 4e6fcf72-daf3-439f-a232-c434ce416af6-WOS.json │ │ │ ├── 4f07fbe9-70de-4927-a4d5-bb28bc12c52c-WOS.json │ │ │ ├── 5d353deb-c4b0-4126-a99e-5490817b48cb-WOS.json │ │ │ ├── 5f8601f8-6e90-4d2c-91bb-eb5836ad1d5c-WOS.json │ │ │ ├── 7a4e4bc8-922c-4c84-865c-25ba34136be1-WOS.json │ │ │ ├── 7e429b8d-a3f0-4ed0-9b58-08957d00b127-WOS.json │ │ │ ├── 7efeb4b1-3d19-4762-b163-63328d66303b-WOS.json │ │ │ ├── 8b1ce5f2-59d2-4dcc-b0b0-666a714b9a14-WOS.json │ │ │ └── 9ed02102-6b28-4946-8339-c028166e9512-WOS.json │ │ ├── libreoffice_writer │ │ │ ├── 0810415c-bde4-4443-9047-d5f70165a697-WOS.json │ │ │ ├── 0a0faba3-5580-44df-965d-f562a99b291c-WOS.json │ │ │ ├── 0b17a146-2934-46c7-8727-73ff6b6483e8-WOS.json │ │ │ ├── 0e47de2a-32e0-456c-a366-8c607ef7a9d2-WOS.json │ │ │ ├── 0e763496-b6bb-4508-a427-fad0b6c3e195-WOS.json │ │ │ ├── 3ef2b351-8a84-4ff2-8724-d86eae9b842e-WOS.json │ │ │ ├── 41c621f7-3544-49e1-af8d-dafd0f834f75-WOS.json │ │ │ ├── 4bcb1253-a636-4df4-8cb0-a35c04dfef31-WOS.json │ │ │ ├── 6a33f9b9-0a56-4844-9c3f-96ec3ffb3ba2-WOS.json │ │ │ ├── 72b810ef-4156-4d09-8f08-a0cf57e7cefe-WOS.json │ │ │ ├── 88fe4b2d-3040-4c70-9a70-546a47764b48-WOS.json │ │ │ ├── 936321ce-5236-426a-9a20-e0e3c5dc536f-WOS.json │ │ │ ├── INF-bb8ccc78-479f-4a2f-a71e-d565e439436b-WOS.json │ │ │ ├── adf5e2c3-64c7-4644-b7b6-d2f0167927e7-WOS.json │ │ │ ├── b21acd93-60fd-4127-8a43-2f5178f4a830-WOS.json │ │ │ ├── d53ff5ee-3b1a-431e-b2be-30ed2673079b-WOS.json │ │ │ ├── e246f6d8-78d7-44ac-b668-fcf47946cb50-WOS.json │ │ │ ├── e528b65e-1107-4b8c-8988-490e4fece599-WOS.json │ │ │ └── f178a4a9-d090-4b56-bc4c-4b72a61a035d-WOS.json │ │ ├── microsoft_paint │ │ │ ├── 15f8de6e-3d39-40e4-af17-bdbb2393c0d9-WOS.json │ │ │ ├── 3544ac9a-6aee-4a0b-a203-bc7b59b272b6-WOS.json │ │ │ └── 44dbac63-32bf-4cd2-81b4-ad6803ec812d-WOS.json │ │ ├── msedge │ │ │ ├── 004587f8-6028-4656-94c1-681481abbc9c-wos.json │ │ │ ├── 049d3788-c979-4ea6-934d-3a35c4630faf-WOS.json │ │ │ ├── 1376d5e7-deb7-471a-9ecc-c5d4e155b0c8-wos.json │ │ │ ├── 1a1ec621-b675-4099-96a9-f702dc27afb4-wos.json │ │ │ ├── 1c9d2c6c-ae4b-4359-9a93-9d3c42f48417-wos.json │ │ │ ├── 2acd62b4-a2ab-44a7-a7e3-f5227bbd8324-wos.json │ │ │ ├── 4d34ff3b-5cc8-44b2-a272-fb07927e996e-WOS.json │ │ │ ├── 58f493b5-5a96-4450-99ca-7cebe144c7e5-wos.json │ │ │ ├── 5b46f4a4-1a78-4860-ad92-76e051fa7efc-wos.json │ │ │ ├── 98cfcec4-c74e-4faa-b70d-664fb0a1d457-wos.json │ │ │ ├── b27399ae-e91a-4055-9406-472372e0f5c7-wos.json │ │ │ ├── bd3e9ea0-a58a-45b3-97be-b418a7e2c0fd-WOS.json │ │ │ └── ccb22f83-0831-4655-b557-225144b70c71-wos.json │ │ ├── notepad │ │ │ ├── 366de66e-cbae-4d72-b042-26390db2b145-WOS.json │ │ │ └── a7d4b6c5-569b-452e-9e1d-ffdb3d431d15-WOS.json │ │ ├── settings │ │ │ ├── 37e10fc4-b4c5-4b02-a65c-bfae8bc51d3f-wos.json │ │ │ ├── 46adf721-2949-4426-b069-010b7c128d8f-wos.json │ │ │ ├── 9504989a-0d6e-4017-aefb-d359f6c752aa-wos.json │ │ │ ├── a659b26e-4e31-40c1-adaf-34742b6c44ac-wos.json │ │ │ └── e8f68f22-1f6a-4cba-a97a-ac611bb4c67b-wos.json │ │ ├── vlc │ │ │ ├── 215dfd39-f493-4bc3-a027-8a97d72c61bf-WOS.json │ │ │ ├── 386dbd0e-0241-4a0a-b6a2-6704fba26b1c-WOS.json │ │ │ ├── 8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-2-WOS.json │ │ │ ├── 8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-WOS.json │ │ │ ├── 8f080098-ddb1-424c-b438-4e96e5e4786e-WOS.json │ │ │ ├── 9195653c-f4aa-453d-aa95-787f6ccfaae9-2-WOS.json │ │ │ ├── 9195653c-f4aa-453d-aa95-787f6ccfaae9-WOS.json │ │ │ ├── INF-0d95d28a-9587-433b-a805-1fbe5467d598-WOS.json │ │ │ ├── INF-5ac2891a-eacd-4954-b339-98abba077adb-WOS.json │ │ │ ├── INF-7882ed6e-bece-4bf0-bada-c32dc1ddae72-WOS.json │ │ │ ├── INF-a1c3ab35-02de-4999-a7ed-2fd12c972c6e-WOS.json │ │ │ ├── INF-cb130f0d-d36f-4302-9838-b3baf46139b6-WOS.json │ │ │ ├── INF-d1ba14d0-fef8-4026-8418-5b581dc68ca0-WOS.json │ │ │ ├── INF-d70666e4-7348-42c7-a06a-664094c5df3c-WOS.json │ │ │ ├── a5bbbcd5-b398-4c91-83d4-55e1e31bbb81-WOS.json │ │ │ ├── aa4b5023-aef6-4ed9-bdc9-705f59ab9ad6-WOS.json │ │ │ ├── d06f0d4d-2cd5-4ede-8de9-598629438c6e-WOS.json │ │ │ ├── efcf0d81-0835-4880-b2fd-d866e8bc2294-WOS.json │ │ │ ├── f3977615-2b45-4ac5-8bba-80c17dbe2a37-WOS.json │ │ │ ├── fba2c100-79e8-42df-ae74-b592418d54f4-WOS.json │ │ │ └── fcd3d211-80f9-53eg-bf85-c603529e65g5-1-WOS.json │ │ ├── vs_code │ │ │ ├── 0ed39f63-6049-43d4-ba4d-5fa2fe04a951-WOS.json │ │ │ ├── 276cc624-87ea-4f08-ab93-f770e3790175-2-WOS.json │ │ │ ├── 276cc624-87ea-4f08-ab93-f770e3790175-WOS.json │ │ │ ├── 4e60007a-f5be-4bfc-9723-c39affa0a6d3-2-WOS.json │ │ │ ├── 4e60007a-f5be-4bfc-9723-c39affa0a6d3-WOS.json │ │ │ ├── 57242fad-77ca-454f-b71b-f187181a9f23-WOS.json │ │ │ ├── 5e2d93d8-8ad0-4435-b150-1692aacaa994-WOS.json │ │ │ ├── 70745df8-f2f5-42bd-8074-fbc10334fcc5-2-WOS.json │ │ │ ├── 70745df8-f2f5-42bd-8074-fbc10334fcc5-WOS.json │ │ │ ├── 930fdb3b-11a8-46fe-9bac-577332e2640e-WOS.json │ │ │ ├── 9439a27b-18ae-42d8-9778-5f68f891805e-WOS.json │ │ │ ├── 982d12a5-beab-424f-8d38-d2a48429e511-2-WOS.json │ │ │ ├── 982d12a5-beab-424f-8d38-d2a48429e511-WOS.json │ │ │ ├── 9d425400-e9b2-4424-9a4b-d4c7abac4140-WOS.json │ │ │ ├── INF-7aeae0e2-70ee-4705-821d-1bba5d5b2ddd-WOS.json │ │ │ ├── INF-7c4cc09e-7a92-40dd-8338-b2286535c4ed-WOS.json │ │ │ ├── INF-847a96b6-df94-4927-97e6-8cc9ea66ced7-WOS.json │ │ │ ├── INF-971cbb5b-3cbf-4ff7-9e24-b5c84fcebfa6-WOS.json │ │ │ ├── INF-dcbe20e8-647f-4f1d-8696-f1c5bbb570e3-WOS.json │ │ │ ├── c6bf789c-ba3a-4209-971d-b63abf0ab733-WOS.json │ │ │ ├── e2b5e914-ffe1-44d2-8e92-58f8c5d92bb2-WOS.json │ │ │ ├── ea98c5d7-3cf9-4f9b-8ad3-366b58e0fcae-WOS.json │ │ │ ├── eabc805a-bfcf-4460-b250-ac92135819f6-WOS.json │ │ │ └── ec71221e-ac43-46f9-89b8-ee7d80f7e1c5-WOS.json │ │ └── windows_calc │ │ │ ├── 28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-2.json │ │ │ ├── 28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-3.json │ │ │ └── 28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS.json │ ├── test_all.json │ ├── test_custom.json │ └── test_small.json ├── human_run.py ├── lib_run_single.py ├── mm_agents │ ├── __init__.py │ └── navi │ │ ├── a11y_demo.py │ │ ├── agent.py │ │ ├── gpt │ │ ├── gpt4v_azure.py │ │ ├── gpt4v_oai.py │ │ ├── gpt4v_planner.py │ │ ├── gptx_azure.py │ │ ├── phi3_azure.py │ │ ├── phi3_planner.py │ │ ├── planner_messages.py │ │ ├── system_messages.py │ │ └── test_fig.jpg │ │ ├── requirements.txt │ │ └── screenparsing_oss │ │ ├── __init__.py │ │ ├── element_extractor │ │ ├── README.md │ │ ├── __init__.py │ │ ├── element_utils.py │ │ └── utils.py │ │ ├── figs │ │ └── 1360x768_cnn.png │ │ ├── groundingdino │ │ ├── __init__.py │ │ ├── config │ │ │ ├── GroundingDINO_SwinT_OGC.py │ │ │ └── __init__.py │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ └── transforms.py │ │ ├── groundingdino.py │ │ ├── icon_localization.py │ │ ├── models │ │ │ ├── GroundingDINO │ │ │ │ ├── __init__.py │ │ │ │ ├── backbone │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backbone.py │ │ │ │ │ ├── position_encoding.py │ │ │ │ │ └── swin_transformer.py │ │ │ │ ├── bertwarper.py │ │ │ │ ├── csrc │ │ │ │ │ ├── MsDeformAttn │ │ │ │ │ │ ├── ms_deform_attn.h │ │ │ │ │ │ ├── ms_deform_attn_cpu.cpp │ │ │ │ │ │ ├── ms_deform_attn_cpu.h │ │ │ │ │ │ ├── ms_deform_attn_cuda.cu │ │ │ │ │ │ ├── ms_deform_attn_cuda.h │ │ │ │ │ │ └── ms_deform_im2col_cuda.cuh │ │ │ │ │ ├── cuda_version.cu │ │ │ │ │ └── vision.cpp │ │ │ │ ├── fuse_modules.py │ │ │ │ ├── groundingdino.py │ │ │ │ ├── ms_deform_attn.py │ │ │ │ ├── transformer.py │ │ │ │ ├── transformer_vanilla.py │ │ │ │ └── utils.py │ │ │ ├── __init__.py │ │ │ └── registry.py │ │ ├── util │ │ │ ├── __init__.py │ │ │ ├── box_ops.py │ │ │ ├── get_tokenlizer.py │ │ │ ├── inference.py │ │ │ ├── logger.py │ │ │ ├── misc.py │ │ │ ├── slconfig.py │ │ │ ├── slio.py │ │ │ ├── time_counter.py │ │ │ ├── utils.py │ │ │ ├── visualizer.py │ │ │ └── vl_utils.py │ │ └── version.py │ │ ├── ocr │ │ ├── __init__.py │ │ ├── ocr_factory.py │ │ ├── ocr_tesseract.py │ │ └── oneocr.py │ │ ├── omniparser │ │ ├── __init__.py │ │ ├── omniparser.py │ │ ├── util │ │ │ ├── __init__.py │ │ │ ├── action_matching.py │ │ │ ├── action_type.py │ │ │ └── box_annotator.py │ │ └── utils.py │ │ ├── parser.py │ │ ├── utils │ │ ├── arial.ttf │ │ ├── draw.py │ │ ├── obs.py │ │ └── som.py │ │ └── webparse │ │ ├── README.md │ │ ├── extract_async.py │ │ ├── requirements.txt │ │ ├── stub │ │ └── label.js │ │ └── webparse.py ├── requirements.txt ├── run.py ├── settings.json ├── show_frames.py ├── show_result.py └── trajectory_recorder.py ├── entry.sh ├── entry_setup.sh ├── fix_az_network.sh ├── start_client.sh ├── start_vm.sh └── vm ├── image └── README.md ├── setup ├── install.bat ├── on-logon.ps1 ├── server │ ├── computer.py │ ├── cursor.png │ ├── fileexplorer_utils.py │ ├── human.py │ ├── main.py │ ├── pyxcursor.py │ ├── requirements.txt │ ├── screen_utils.py │ ├── test.py │ └── uiautomation_utils.py ├── setup-tools.psm1 ├── setup.ps1 └── tools_config.json └── unattend-files ├── azure_win11x64-enterprise-eval.xml └── dev_win11x64-enterprise-eval.xml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.github/workflows/publish-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/.github/workflows/publish-docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/Develop-Agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/docs/Develop-Agent.md -------------------------------------------------------------------------------- /docs/Develop-Tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/docs/Develop-Tasks.md -------------------------------------------------------------------------------- /docs/Development-Tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/docs/Development-Tips.md -------------------------------------------------------------------------------- /img/architecture-azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/architecture-azure.png -------------------------------------------------------------------------------- /img/architecture-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/architecture-local.png -------------------------------------------------------------------------------- /img/azure_blobstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/azure_blobstore.png -------------------------------------------------------------------------------- /img/azure_create_ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/azure_create_ml.png -------------------------------------------------------------------------------- /img/azure_create_ml2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/azure_create_ml2.png -------------------------------------------------------------------------------- /img/azure_ml_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/azure_ml_portal.png -------------------------------------------------------------------------------- /img/azure_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/azure_notebook.png -------------------------------------------------------------------------------- /img/azure_quota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/azure_quota.png -------------------------------------------------------------------------------- /img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/banner.png -------------------------------------------------------------------------------- /img/local_dev_mode_shared_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/local_dev_mode_shared_folder.png -------------------------------------------------------------------------------- /img/local_prepare_logs_successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/local_prepare_logs_successful.png -------------------------------------------------------------------------------- /img/local_prepare_screen_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/local_prepare_screen_setup.png -------------------------------------------------------------------------------- /img/local_prepare_screen_unattend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/local_prepare_screen_unattend.png -------------------------------------------------------------------------------- /img/local_prepare_storage_successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/local_prepare_storage_successful.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/img/main.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/azure_files/compute-instance-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/azure_files/compute-instance-startup.sh -------------------------------------------------------------------------------- /scripts/azure_files/run_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/azure_files/run_entry.py -------------------------------------------------------------------------------- /scripts/build-container-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/build-container-image.sh -------------------------------------------------------------------------------- /scripts/experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/experiments.json -------------------------------------------------------------------------------- /scripts/run-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/run-local.sh -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/run_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/run_azure.py -------------------------------------------------------------------------------- /scripts/shared.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/shared.sh -------------------------------------------------------------------------------- /scripts/show_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/scripts/show_azure.py -------------------------------------------------------------------------------- /src/win-arena-container/Dockerfile-WinArena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/Dockerfile-WinArena -------------------------------------------------------------------------------- /src/win-arena-container/Dockerfile-WinArena-Base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/Dockerfile-WinArena-Base -------------------------------------------------------------------------------- /src/win-arena-container/Dockerfile-WinArena-Base.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | 3 | # whitelist 4 | !src/win-arena-container/** -------------------------------------------------------------------------------- /src/win-arena-container/Dockerfile-WinArena.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | 3 | # whitelist 4 | !src/win-arena-container/** -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/assets/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/assets/cursor.png -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/assets/history_empty.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/assets/history_empty.sqlite -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/assets/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/assets/icon.jpg -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/controllers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/controllers/python.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/controllers/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/controllers/setup.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/controllers/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/controllers/vm.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/envs/__init__.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/envs/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/envs/actions.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/envs/desktop_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/envs/desktop_env.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/README.md -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/__init__.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/__init__.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/calc.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/chrome.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/edge.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/file.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/fileexplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/fileexplorer.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/general.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/gimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/gimp.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/impress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/impress.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/info.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/microsoftpaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/microsoftpaint.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/misc.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/msedge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/msedge.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/replay.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/settings.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/vlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/vlc.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/vscode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/vscode.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/getters/windows_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/getters/windows_clock.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/__init__.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/basic_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/basic_os.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/chrome.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/docs.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/edge.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/general.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/gimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/gimp.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/libreoffice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/libreoffice.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/others.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/pdf.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/slides.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/table.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/thunderbird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/thunderbird.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/utils.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/vlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/vlc.py -------------------------------------------------------------------------------- /src/win-arena-container/client/desktop_env/evaluators/metrics/vscode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/desktop_env/evaluators/metrics/vscode.py -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/create_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/create_json.py -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/030eeff7-b492-4218-b312-701ec99ee0cc-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/030eeff7-b492-4218-b312-701ec99ee0cc-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/06fe7178-4491-4589-810f-2e2bc9502122-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/06fe7178-4491-4589-810f-2e2bc9502122-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/121ba48f-9e17-48ce-9bc6-a4fb17a7ebba-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/121ba48f-9e17-48ce-9bc6-a4fb17a7ebba-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/2ae9ba84-3a0d-4d4c-8338-3a1478dc5fe3-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/2ae9ba84-3a0d-4d4c-8338-3a1478dc5fe3-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/35253b65-1c19-4304-8aa4-6884b8218fc0-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/35253b65-1c19-4304-8aa4-6884b8218fc0-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/44ee5668-ecd5-4366-a6ce-c1c9b8d4e938-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/44ee5668-ecd5-4366-a6ce-c1c9b8d4e938-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/480bcfea-d68f-4aaa-a0a9-2589ef319381-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/480bcfea-d68f-4aaa-a0a9-2589ef319381-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/7a5a7856-f1b6-42a4-ade9-1ca81ca0f263-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/7a5a7856-f1b6-42a4-ade9-1ca81ca0f263-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/7b6c7e24-c58a-49fc-a5bb-d57b80e5b4c3-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/7b6c7e24-c58a-49fc-a5bb-d57b80e5b4c3-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/82bc8d6a-36eb-4d2d-8801-ef714fb1e55a-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/82bc8d6a-36eb-4d2d-8801-ef714fb1e55a-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/9656a811-9b5b-4ddf-99c7-5117bcef0626-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/9656a811-9b5b-4ddf-99c7-5117bcef0626-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/99146c54-4f37-4ab8-9327-5f3291665e1e-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/99146c54-4f37-4ab8-9327-5f3291665e1e-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/a96b564e-dbe9-42c3-9ccf-b4498073438a-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/a96b564e-dbe9-42c3-9ccf-b4498073438a-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/af630914-714e-4a24-a7bb-f9af687d3b91-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/af630914-714e-4a24-a7bb-f9af687d3b91-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/b070486d-e161-459b-aa2b-ef442d973b92-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/b070486d-e161-459b-aa2b-ef442d973b92-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/bb5e4c0d-f964-439c-97b6-bdb9747de3f4-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/bb5e4c0d-f964-439c-97b6-bdb9747de3f4-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/chrome/e1e75309-3ddb-4d09-92ec-de869c928143-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/chrome/e1e75309-3ddb-4d09-92ec-de869c928143-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/clock/02F10F89-7171-4D37-8550-A00BA8930CDF-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/clock/02F10F89-7171-4D37-8550-A00BA8930CDF-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/clock/02F10F89-7171-4D37-8550-A00BA8930CDF-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/clock/02F10F89-7171-4D37-8550-A00BA8930CDF-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/clock/91A30BE9-0E11-4374-8D43-41D4D097080A-WOS-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/clock/91A30BE9-0E11-4374-8D43-41D4D097080A-WOS-2.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/clock/91A30BE9-0E11-4374-8D43-41D4D097080A-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/clock/91A30BE9-0E11-4374-8D43-41D4D097080A-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/016c9a9d-f2b9-4428-8fdb-f74f4439ece6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/016c9a9d-f2b9-4428-8fdb-f74f4439ece6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/0c9dda13-428c-492b-900b-f48562111f93-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/0c9dda13-428c-492b-900b-f48562111f93-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/1876fe7f-6fdc-5dd6-c9e0-237d4c8411f0-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/1876fe7f-6fdc-5dd6-c9e0-237d4c8411f0-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/22e529ff-4199-4ffb-95b7-8e5be9b7a860-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/22e529ff-4199-4ffb-95b7-8e5be9b7a860-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/2b0c0844-bd4f-42ba-a25e-afb4267d51e2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/2b0c0844-bd4f-42ba-a25e-afb4267d51e2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/2d292a2d-686b-4e72-80f7-af6c232b1258-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/2d292a2d-686b-4e72-80f7-af6c232b1258-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/34a4fee9-e52e-4a4a-96d2-68d35091504a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/34a4fee9-e52e-4a4a-96d2-68d35091504a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/3bad5766-5186-42be-abe1-12eacc798d3a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/3bad5766-5186-42be-abe1-12eacc798d3a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/5316686e-5688-4115-be24-052037df599f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/5316686e-5688-4115-be24-052037df599f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/5548314e-d807-4e9e-97e9-b3a4f9fd634f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/5548314e-d807-4e9e-97e9-b3a4f9fd634f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/7AB09EF1-331B-4A21-90C9-996ADE3B6E1A-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/7AB09EF1-331B-4A21-90C9-996ADE3B6E1A-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/7c70e16b-e14f-4baa-b046-3e022b2d0305-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/7c70e16b-e14f-4baa-b046-3e022b2d0305-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/ac46b5cb-616a-46e0-b287-9628fd0dab06-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/ac46b5cb-616a-46e0-b287-9628fd0dab06-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/b0c9dac6-52ba-4937-aabb-b0abdc2a8138-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/b0c9dac6-52ba-4937-aabb-b0abdc2a8138-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/b12921b2-8772-4667-a960-067309906dd4-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/b12921b2-8772-4667-a960-067309906dd4-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/b12b2d3a-7da1-4aeb-97cc-6026d3975210-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/b12b2d3a-7da1-4aeb-97cc-6026d3975210-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/b8ab0ae1-d2b4-4e6f-b609-df7d76b456d7-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/b8ab0ae1-d2b4-4e6f-b609-df7d76b456d7-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/e27984c7-968c-48d7-b2c3-6e45cdcc5249-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/e27984c7-968c-48d7-b2c3-6e45cdcc5249-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/f934d80d-84d2-4b46-953c-89f77b5a709a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/file_explorer/f934d80d-84d2-4b46-953c-89f77b5a709a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/01b269ae-2111-4a07-81fd-3fcd711993b0-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/01b269ae-2111-4a07-81fd-3fcd711993b0-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/035f41ba-6653-43ab-aa63-c86d449d62e5-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/035f41ba-6653-43ab-aa63-c86d449d62e5-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/04d9aeaf-7bed-4024-bedb-e10e6f00eb7f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/04d9aeaf-7bed-4024-bedb-e10e6f00eb7f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/0a2e43bf-b26c-4631-a966-af9dfa12c9e5-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/0a2e43bf-b26c-4631-a966-af9dfa12c9e5-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/0acbd372-ca7a-4507-b949-70673120190f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/0acbd372-ca7a-4507-b949-70673120190f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/0bf05a7d-b28b-44d2-955a-50b41e24012a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/0bf05a7d-b28b-44d2-955a-50b41e24012a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/0cecd4f3-74de-457b-ba94-29ad6b5dafb6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/0cecd4f3-74de-457b-ba94-29ad6b5dafb6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/1d17d234-e39d-4ed7-b46f-4417922a4e7c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/1d17d234-e39d-4ed7-b46f-4417922a4e7c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/1de60575-bb6e-4c3d-9e6a-2fa699f9f197-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/1de60575-bb6e-4c3d-9e6a-2fa699f9f197-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/1e8df695-bd1b-45b3-b557-e7d599cf7597-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/1e8df695-bd1b-45b3-b557-e7d599cf7597-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/21ab7b40-77c2-4ae6-8321-e00d3a086c73-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/21ab7b40-77c2-4ae6-8321-e00d3a086c73-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/26a8440e-c166-4c50-aef4-bfb77314b46b-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/26a8440e-c166-4c50-aef4-bfb77314b46b-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/30e3e107-1cfb-46ee-a755-2cd080d7ba6a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/30e3e107-1cfb-46ee-a755-2cd080d7ba6a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/39aa4e37-dc91-482e-99af-132a612d40f3-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/39aa4e37-dc91-482e-99af-132a612d40f3-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/4de54231-e4b5-49e3-b2ba-61a0bec721c0-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/4de54231-e4b5-49e3-b2ba-61a0bec721c0-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/4e6fcf72-daf3-439f-a232-c434ce416af6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/4e6fcf72-daf3-439f-a232-c434ce416af6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/4f07fbe9-70de-4927-a4d5-bb28bc12c52c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/4f07fbe9-70de-4927-a4d5-bb28bc12c52c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/5d353deb-c4b0-4126-a99e-5490817b48cb-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/5d353deb-c4b0-4126-a99e-5490817b48cb-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/5f8601f8-6e90-4d2c-91bb-eb5836ad1d5c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/5f8601f8-6e90-4d2c-91bb-eb5836ad1d5c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/7a4e4bc8-922c-4c84-865c-25ba34136be1-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/7a4e4bc8-922c-4c84-865c-25ba34136be1-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/7e429b8d-a3f0-4ed0-9b58-08957d00b127-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/7e429b8d-a3f0-4ed0-9b58-08957d00b127-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/7efeb4b1-3d19-4762-b163-63328d66303b-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/7efeb4b1-3d19-4762-b163-63328d66303b-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/8b1ce5f2-59d2-4dcc-b0b0-666a714b9a14-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/8b1ce5f2-59d2-4dcc-b0b0-666a714b9a14-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/9ed02102-6b28-4946-8339-c028166e9512-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_calc/9ed02102-6b28-4946-8339-c028166e9512-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0810415c-bde4-4443-9047-d5f70165a697-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0810415c-bde4-4443-9047-d5f70165a697-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0a0faba3-5580-44df-965d-f562a99b291c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0a0faba3-5580-44df-965d-f562a99b291c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0b17a146-2934-46c7-8727-73ff6b6483e8-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0b17a146-2934-46c7-8727-73ff6b6483e8-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0e47de2a-32e0-456c-a366-8c607ef7a9d2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0e47de2a-32e0-456c-a366-8c607ef7a9d2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0e763496-b6bb-4508-a427-fad0b6c3e195-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/0e763496-b6bb-4508-a427-fad0b6c3e195-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/3ef2b351-8a84-4ff2-8724-d86eae9b842e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/3ef2b351-8a84-4ff2-8724-d86eae9b842e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/41c621f7-3544-49e1-af8d-dafd0f834f75-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/41c621f7-3544-49e1-af8d-dafd0f834f75-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/4bcb1253-a636-4df4-8cb0-a35c04dfef31-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/4bcb1253-a636-4df4-8cb0-a35c04dfef31-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/6a33f9b9-0a56-4844-9c3f-96ec3ffb3ba2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/6a33f9b9-0a56-4844-9c3f-96ec3ffb3ba2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/72b810ef-4156-4d09-8f08-a0cf57e7cefe-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/72b810ef-4156-4d09-8f08-a0cf57e7cefe-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/88fe4b2d-3040-4c70-9a70-546a47764b48-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/88fe4b2d-3040-4c70-9a70-546a47764b48-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/936321ce-5236-426a-9a20-e0e3c5dc536f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/936321ce-5236-426a-9a20-e0e3c5dc536f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/INF-bb8ccc78-479f-4a2f-a71e-d565e439436b-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/INF-bb8ccc78-479f-4a2f-a71e-d565e439436b-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/adf5e2c3-64c7-4644-b7b6-d2f0167927e7-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/adf5e2c3-64c7-4644-b7b6-d2f0167927e7-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/b21acd93-60fd-4127-8a43-2f5178f4a830-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/b21acd93-60fd-4127-8a43-2f5178f4a830-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/d53ff5ee-3b1a-431e-b2be-30ed2673079b-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/d53ff5ee-3b1a-431e-b2be-30ed2673079b-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/e246f6d8-78d7-44ac-b668-fcf47946cb50-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/e246f6d8-78d7-44ac-b668-fcf47946cb50-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/e528b65e-1107-4b8c-8988-490e4fece599-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/e528b65e-1107-4b8c-8988-490e4fece599-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/f178a4a9-d090-4b56-bc4c-4b72a61a035d-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/libreoffice_writer/f178a4a9-d090-4b56-bc4c-4b72a61a035d-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/microsoft_paint/15f8de6e-3d39-40e4-af17-bdbb2393c0d9-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/microsoft_paint/15f8de6e-3d39-40e4-af17-bdbb2393c0d9-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/microsoft_paint/3544ac9a-6aee-4a0b-a203-bc7b59b272b6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/microsoft_paint/3544ac9a-6aee-4a0b-a203-bc7b59b272b6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/microsoft_paint/44dbac63-32bf-4cd2-81b4-ad6803ec812d-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/microsoft_paint/44dbac63-32bf-4cd2-81b4-ad6803ec812d-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/004587f8-6028-4656-94c1-681481abbc9c-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/004587f8-6028-4656-94c1-681481abbc9c-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/049d3788-c979-4ea6-934d-3a35c4630faf-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/049d3788-c979-4ea6-934d-3a35c4630faf-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/1376d5e7-deb7-471a-9ecc-c5d4e155b0c8-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/1376d5e7-deb7-471a-9ecc-c5d4e155b0c8-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/1a1ec621-b675-4099-96a9-f702dc27afb4-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/1a1ec621-b675-4099-96a9-f702dc27afb4-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/1c9d2c6c-ae4b-4359-9a93-9d3c42f48417-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/1c9d2c6c-ae4b-4359-9a93-9d3c42f48417-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/2acd62b4-a2ab-44a7-a7e3-f5227bbd8324-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/2acd62b4-a2ab-44a7-a7e3-f5227bbd8324-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/4d34ff3b-5cc8-44b2-a272-fb07927e996e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/4d34ff3b-5cc8-44b2-a272-fb07927e996e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/58f493b5-5a96-4450-99ca-7cebe144c7e5-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/58f493b5-5a96-4450-99ca-7cebe144c7e5-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/5b46f4a4-1a78-4860-ad92-76e051fa7efc-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/5b46f4a4-1a78-4860-ad92-76e051fa7efc-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/98cfcec4-c74e-4faa-b70d-664fb0a1d457-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/98cfcec4-c74e-4faa-b70d-664fb0a1d457-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/b27399ae-e91a-4055-9406-472372e0f5c7-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/b27399ae-e91a-4055-9406-472372e0f5c7-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/bd3e9ea0-a58a-45b3-97be-b418a7e2c0fd-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/bd3e9ea0-a58a-45b3-97be-b418a7e2c0fd-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/msedge/ccb22f83-0831-4655-b557-225144b70c71-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/msedge/ccb22f83-0831-4655-b557-225144b70c71-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/notepad/366de66e-cbae-4d72-b042-26390db2b145-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/notepad/366de66e-cbae-4d72-b042-26390db2b145-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/notepad/a7d4b6c5-569b-452e-9e1d-ffdb3d431d15-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/notepad/a7d4b6c5-569b-452e-9e1d-ffdb3d431d15-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/settings/37e10fc4-b4c5-4b02-a65c-bfae8bc51d3f-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/settings/37e10fc4-b4c5-4b02-a65c-bfae8bc51d3f-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/settings/46adf721-2949-4426-b069-010b7c128d8f-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/settings/46adf721-2949-4426-b069-010b7c128d8f-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/settings/9504989a-0d6e-4017-aefb-d359f6c752aa-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/settings/9504989a-0d6e-4017-aefb-d359f6c752aa-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/settings/a659b26e-4e31-40c1-adaf-34742b6c44ac-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/settings/a659b26e-4e31-40c1-adaf-34742b6c44ac-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/settings/e8f68f22-1f6a-4cba-a97a-ac611bb4c67b-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/settings/e8f68f22-1f6a-4cba-a97a-ac611bb4c67b-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/215dfd39-f493-4bc3-a027-8a97d72c61bf-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/215dfd39-f493-4bc3-a027-8a97d72c61bf-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/386dbd0e-0241-4a0a-b6a2-6704fba26b1c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/386dbd0e-0241-4a0a-b6a2-6704fba26b1c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/8f080098-ddb1-424c-b438-4e96e5e4786e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/8f080098-ddb1-424c-b438-4e96e5e4786e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/9195653c-f4aa-453d-aa95-787f6ccfaae9-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/9195653c-f4aa-453d-aa95-787f6ccfaae9-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/9195653c-f4aa-453d-aa95-787f6ccfaae9-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/9195653c-f4aa-453d-aa95-787f6ccfaae9-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-0d95d28a-9587-433b-a805-1fbe5467d598-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-0d95d28a-9587-433b-a805-1fbe5467d598-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-5ac2891a-eacd-4954-b339-98abba077adb-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-5ac2891a-eacd-4954-b339-98abba077adb-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-7882ed6e-bece-4bf0-bada-c32dc1ddae72-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-7882ed6e-bece-4bf0-bada-c32dc1ddae72-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-a1c3ab35-02de-4999-a7ed-2fd12c972c6e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-a1c3ab35-02de-4999-a7ed-2fd12c972c6e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-cb130f0d-d36f-4302-9838-b3baf46139b6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-cb130f0d-d36f-4302-9838-b3baf46139b6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-d1ba14d0-fef8-4026-8418-5b581dc68ca0-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-d1ba14d0-fef8-4026-8418-5b581dc68ca0-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-d70666e4-7348-42c7-a06a-664094c5df3c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/INF-d70666e4-7348-42c7-a06a-664094c5df3c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/a5bbbcd5-b398-4c91-83d4-55e1e31bbb81-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/a5bbbcd5-b398-4c91-83d4-55e1e31bbb81-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/aa4b5023-aef6-4ed9-bdc9-705f59ab9ad6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/aa4b5023-aef6-4ed9-bdc9-705f59ab9ad6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/d06f0d4d-2cd5-4ede-8de9-598629438c6e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/d06f0d4d-2cd5-4ede-8de9-598629438c6e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/efcf0d81-0835-4880-b2fd-d866e8bc2294-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/efcf0d81-0835-4880-b2fd-d866e8bc2294-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/f3977615-2b45-4ac5-8bba-80c17dbe2a37-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/f3977615-2b45-4ac5-8bba-80c17dbe2a37-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/fba2c100-79e8-42df-ae74-b592418d54f4-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/fba2c100-79e8-42df-ae74-b592418d54f4-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vlc/fcd3d211-80f9-53eg-bf85-c603529e65g5-1-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vlc/fcd3d211-80f9-53eg-bf85-c603529e65g5-1-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/0ed39f63-6049-43d4-ba4d-5fa2fe04a951-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/0ed39f63-6049-43d4-ba4d-5fa2fe04a951-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/276cc624-87ea-4f08-ab93-f770e3790175-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/276cc624-87ea-4f08-ab93-f770e3790175-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/276cc624-87ea-4f08-ab93-f770e3790175-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/276cc624-87ea-4f08-ab93-f770e3790175-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/4e60007a-f5be-4bfc-9723-c39affa0a6d3-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/4e60007a-f5be-4bfc-9723-c39affa0a6d3-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/4e60007a-f5be-4bfc-9723-c39affa0a6d3-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/4e60007a-f5be-4bfc-9723-c39affa0a6d3-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/57242fad-77ca-454f-b71b-f187181a9f23-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/57242fad-77ca-454f-b71b-f187181a9f23-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/5e2d93d8-8ad0-4435-b150-1692aacaa994-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/5e2d93d8-8ad0-4435-b150-1692aacaa994-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/70745df8-f2f5-42bd-8074-fbc10334fcc5-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/70745df8-f2f5-42bd-8074-fbc10334fcc5-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/70745df8-f2f5-42bd-8074-fbc10334fcc5-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/70745df8-f2f5-42bd-8074-fbc10334fcc5-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/930fdb3b-11a8-46fe-9bac-577332e2640e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/930fdb3b-11a8-46fe-9bac-577332e2640e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/9439a27b-18ae-42d8-9778-5f68f891805e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/9439a27b-18ae-42d8-9778-5f68f891805e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/982d12a5-beab-424f-8d38-d2a48429e511-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/982d12a5-beab-424f-8d38-d2a48429e511-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/982d12a5-beab-424f-8d38-d2a48429e511-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/982d12a5-beab-424f-8d38-d2a48429e511-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/9d425400-e9b2-4424-9a4b-d4c7abac4140-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/9d425400-e9b2-4424-9a4b-d4c7abac4140-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-7aeae0e2-70ee-4705-821d-1bba5d5b2ddd-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-7aeae0e2-70ee-4705-821d-1bba5d5b2ddd-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-7c4cc09e-7a92-40dd-8338-b2286535c4ed-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-7c4cc09e-7a92-40dd-8338-b2286535c4ed-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-847a96b6-df94-4927-97e6-8cc9ea66ced7-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-847a96b6-df94-4927-97e6-8cc9ea66ced7-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-971cbb5b-3cbf-4ff7-9e24-b5c84fcebfa6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-971cbb5b-3cbf-4ff7-9e24-b5c84fcebfa6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-dcbe20e8-647f-4f1d-8696-f1c5bbb570e3-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/INF-dcbe20e8-647f-4f1d-8696-f1c5bbb570e3-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/c6bf789c-ba3a-4209-971d-b63abf0ab733-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/c6bf789c-ba3a-4209-971d-b63abf0ab733-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/e2b5e914-ffe1-44d2-8e92-58f8c5d92bb2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/e2b5e914-ffe1-44d2-8e92-58f8c5d92bb2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/ea98c5d7-3cf9-4f9b-8ad3-366b58e0fcae-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/ea98c5d7-3cf9-4f9b-8ad3-366b58e0fcae-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/eabc805a-bfcf-4460-b250-ac92135819f6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/eabc805a-bfcf-4460-b250-ac92135819f6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/ec71221e-ac43-46f9-89b8-ee7d80f7e1c5-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/vs_code/ec71221e-ac43-46f9-89b8-ee7d80f7e1c5-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-2.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-3.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/030eeff7-b492-4218-b312-701ec99ee0cc-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/030eeff7-b492-4218-b312-701ec99ee0cc-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/06fe7178-4491-4589-810f-2e2bc9502122-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/06fe7178-4491-4589-810f-2e2bc9502122-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/121ba48f-9e17-48ce-9bc6-a4fb17a7ebba-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/121ba48f-9e17-48ce-9bc6-a4fb17a7ebba-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/2ae9ba84-3a0d-4d4c-8338-3a1478dc5fe3-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/2ae9ba84-3a0d-4d4c-8338-3a1478dc5fe3-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/35253b65-1c19-4304-8aa4-6884b8218fc0-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/35253b65-1c19-4304-8aa4-6884b8218fc0-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/44ee5668-ecd5-4366-a6ce-c1c9b8d4e938-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/44ee5668-ecd5-4366-a6ce-c1c9b8d4e938-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/480bcfea-d68f-4aaa-a0a9-2589ef319381-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/480bcfea-d68f-4aaa-a0a9-2589ef319381-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/7a5a7856-f1b6-42a4-ade9-1ca81ca0f263-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/7a5a7856-f1b6-42a4-ade9-1ca81ca0f263-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/7b6c7e24-c58a-49fc-a5bb-d57b80e5b4c3-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/7b6c7e24-c58a-49fc-a5bb-d57b80e5b4c3-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/82bc8d6a-36eb-4d2d-8801-ef714fb1e55a-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/82bc8d6a-36eb-4d2d-8801-ef714fb1e55a-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/9656a811-9b5b-4ddf-99c7-5117bcef0626-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/9656a811-9b5b-4ddf-99c7-5117bcef0626-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/99146c54-4f37-4ab8-9327-5f3291665e1e-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/99146c54-4f37-4ab8-9327-5f3291665e1e-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/a96b564e-dbe9-42c3-9ccf-b4498073438a-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/a96b564e-dbe9-42c3-9ccf-b4498073438a-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/af630914-714e-4a24-a7bb-f9af687d3b91-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/af630914-714e-4a24-a7bb-f9af687d3b91-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/b070486d-e161-459b-aa2b-ef442d973b92-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/b070486d-e161-459b-aa2b-ef442d973b92-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/bb5e4c0d-f964-439c-97b6-bdb9747de3f4-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/bb5e4c0d-f964-439c-97b6-bdb9747de3f4-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/e1e75309-3ddb-4d09-92ec-de869c928143-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/chrome/e1e75309-3ddb-4d09-92ec-de869c928143-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/clock/02F10F89-7171-4D37-8550-A00BA8930CDF-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/clock/02F10F89-7171-4D37-8550-A00BA8930CDF-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/clock/02F10F89-7171-4D37-8550-A00BA8930CDF-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/clock/02F10F89-7171-4D37-8550-A00BA8930CDF-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/clock/91A30BE9-0E11-4374-8D43-41D4D097080A-WOS-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/clock/91A30BE9-0E11-4374-8D43-41D4D097080A-WOS-2.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/clock/91A30BE9-0E11-4374-8D43-41D4D097080A-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/clock/91A30BE9-0E11-4374-8D43-41D4D097080A-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/016c9a9d-f2b9-4428-8fdb-f74f4439ece6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/016c9a9d-f2b9-4428-8fdb-f74f4439ece6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/0c9dda13-428c-492b-900b-f48562111f93-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/0c9dda13-428c-492b-900b-f48562111f93-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/1876fe7f-6fdc-5dd6-c9e0-237d4c8411f0-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/1876fe7f-6fdc-5dd6-c9e0-237d4c8411f0-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/22e529ff-4199-4ffb-95b7-8e5be9b7a860-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/22e529ff-4199-4ffb-95b7-8e5be9b7a860-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/2b0c0844-bd4f-42ba-a25e-afb4267d51e2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/2b0c0844-bd4f-42ba-a25e-afb4267d51e2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/2d292a2d-686b-4e72-80f7-af6c232b1258-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/2d292a2d-686b-4e72-80f7-af6c232b1258-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/34a4fee9-e52e-4a4a-96d2-68d35091504a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/34a4fee9-e52e-4a4a-96d2-68d35091504a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/3bad5766-5186-42be-abe1-12eacc798d3a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/3bad5766-5186-42be-abe1-12eacc798d3a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/5316686e-5688-4115-be24-052037df599f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/5316686e-5688-4115-be24-052037df599f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/5548314e-d807-4e9e-97e9-b3a4f9fd634f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/5548314e-d807-4e9e-97e9-b3a4f9fd634f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/7AB09EF1-331B-4A21-90C9-996ADE3B6E1A-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/7AB09EF1-331B-4A21-90C9-996ADE3B6E1A-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/7c70e16b-e14f-4baa-b046-3e022b2d0305-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/7c70e16b-e14f-4baa-b046-3e022b2d0305-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/ac46b5cb-616a-46e0-b287-9628fd0dab06-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/ac46b5cb-616a-46e0-b287-9628fd0dab06-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/b0c9dac6-52ba-4937-aabb-b0abdc2a8138-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/b0c9dac6-52ba-4937-aabb-b0abdc2a8138-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/b12921b2-8772-4667-a960-067309906dd4-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/b12921b2-8772-4667-a960-067309906dd4-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/b12b2d3a-7da1-4aeb-97cc-6026d3975210-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/b12b2d3a-7da1-4aeb-97cc-6026d3975210-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/b8ab0ae1-d2b4-4e6f-b609-df7d76b456d7-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/b8ab0ae1-d2b4-4e6f-b609-df7d76b456d7-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/e27984c7-968c-48d7-b2c3-6e45cdcc5249-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/e27984c7-968c-48d7-b2c3-6e45cdcc5249-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/f934d80d-84d2-4b46-953c-89f77b5a709a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/file_explorer/f934d80d-84d2-4b46-953c-89f77b5a709a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/01b269ae-2111-4a07-81fd-3fcd711993b0-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/01b269ae-2111-4a07-81fd-3fcd711993b0-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/035f41ba-6653-43ab-aa63-c86d449d62e5-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/035f41ba-6653-43ab-aa63-c86d449d62e5-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/04d9aeaf-7bed-4024-bedb-e10e6f00eb7f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/04d9aeaf-7bed-4024-bedb-e10e6f00eb7f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/0a2e43bf-b26c-4631-a966-af9dfa12c9e5-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/0a2e43bf-b26c-4631-a966-af9dfa12c9e5-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/0acbd372-ca7a-4507-b949-70673120190f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/0acbd372-ca7a-4507-b949-70673120190f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/0bf05a7d-b28b-44d2-955a-50b41e24012a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/0bf05a7d-b28b-44d2-955a-50b41e24012a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/0cecd4f3-74de-457b-ba94-29ad6b5dafb6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/0cecd4f3-74de-457b-ba94-29ad6b5dafb6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/1d17d234-e39d-4ed7-b46f-4417922a4e7c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/1d17d234-e39d-4ed7-b46f-4417922a4e7c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/1de60575-bb6e-4c3d-9e6a-2fa699f9f197-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/1de60575-bb6e-4c3d-9e6a-2fa699f9f197-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/1e8df695-bd1b-45b3-b557-e7d599cf7597-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/1e8df695-bd1b-45b3-b557-e7d599cf7597-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/21ab7b40-77c2-4ae6-8321-e00d3a086c73-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/21ab7b40-77c2-4ae6-8321-e00d3a086c73-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/26a8440e-c166-4c50-aef4-bfb77314b46b-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/26a8440e-c166-4c50-aef4-bfb77314b46b-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/30e3e107-1cfb-46ee-a755-2cd080d7ba6a-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/30e3e107-1cfb-46ee-a755-2cd080d7ba6a-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/39aa4e37-dc91-482e-99af-132a612d40f3-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/39aa4e37-dc91-482e-99af-132a612d40f3-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/4de54231-e4b5-49e3-b2ba-61a0bec721c0-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/4de54231-e4b5-49e3-b2ba-61a0bec721c0-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/4e6fcf72-daf3-439f-a232-c434ce416af6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/4e6fcf72-daf3-439f-a232-c434ce416af6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/4f07fbe9-70de-4927-a4d5-bb28bc12c52c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/4f07fbe9-70de-4927-a4d5-bb28bc12c52c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/5d353deb-c4b0-4126-a99e-5490817b48cb-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/5d353deb-c4b0-4126-a99e-5490817b48cb-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/5f8601f8-6e90-4d2c-91bb-eb5836ad1d5c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/5f8601f8-6e90-4d2c-91bb-eb5836ad1d5c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/7a4e4bc8-922c-4c84-865c-25ba34136be1-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/7a4e4bc8-922c-4c84-865c-25ba34136be1-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/7e429b8d-a3f0-4ed0-9b58-08957d00b127-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/7e429b8d-a3f0-4ed0-9b58-08957d00b127-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/7efeb4b1-3d19-4762-b163-63328d66303b-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/7efeb4b1-3d19-4762-b163-63328d66303b-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/8b1ce5f2-59d2-4dcc-b0b0-666a714b9a14-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/8b1ce5f2-59d2-4dcc-b0b0-666a714b9a14-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/9ed02102-6b28-4946-8339-c028166e9512-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_calc/9ed02102-6b28-4946-8339-c028166e9512-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0810415c-bde4-4443-9047-d5f70165a697-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0810415c-bde4-4443-9047-d5f70165a697-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0a0faba3-5580-44df-965d-f562a99b291c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0a0faba3-5580-44df-965d-f562a99b291c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0b17a146-2934-46c7-8727-73ff6b6483e8-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0b17a146-2934-46c7-8727-73ff6b6483e8-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0e47de2a-32e0-456c-a366-8c607ef7a9d2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0e47de2a-32e0-456c-a366-8c607ef7a9d2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0e763496-b6bb-4508-a427-fad0b6c3e195-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/0e763496-b6bb-4508-a427-fad0b6c3e195-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/3ef2b351-8a84-4ff2-8724-d86eae9b842e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/3ef2b351-8a84-4ff2-8724-d86eae9b842e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/41c621f7-3544-49e1-af8d-dafd0f834f75-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/41c621f7-3544-49e1-af8d-dafd0f834f75-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/4bcb1253-a636-4df4-8cb0-a35c04dfef31-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/4bcb1253-a636-4df4-8cb0-a35c04dfef31-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/6a33f9b9-0a56-4844-9c3f-96ec3ffb3ba2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/6a33f9b9-0a56-4844-9c3f-96ec3ffb3ba2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/72b810ef-4156-4d09-8f08-a0cf57e7cefe-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/72b810ef-4156-4d09-8f08-a0cf57e7cefe-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/88fe4b2d-3040-4c70-9a70-546a47764b48-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/88fe4b2d-3040-4c70-9a70-546a47764b48-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/936321ce-5236-426a-9a20-e0e3c5dc536f-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/936321ce-5236-426a-9a20-e0e3c5dc536f-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/INF-bb8ccc78-479f-4a2f-a71e-d565e439436b-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/INF-bb8ccc78-479f-4a2f-a71e-d565e439436b-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/adf5e2c3-64c7-4644-b7b6-d2f0167927e7-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/adf5e2c3-64c7-4644-b7b6-d2f0167927e7-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/b21acd93-60fd-4127-8a43-2f5178f4a830-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/b21acd93-60fd-4127-8a43-2f5178f4a830-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/d53ff5ee-3b1a-431e-b2be-30ed2673079b-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/d53ff5ee-3b1a-431e-b2be-30ed2673079b-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/e246f6d8-78d7-44ac-b668-fcf47946cb50-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/e246f6d8-78d7-44ac-b668-fcf47946cb50-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/e528b65e-1107-4b8c-8988-490e4fece599-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/e528b65e-1107-4b8c-8988-490e4fece599-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/f178a4a9-d090-4b56-bc4c-4b72a61a035d-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/libreoffice_writer/f178a4a9-d090-4b56-bc4c-4b72a61a035d-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/microsoft_paint/15f8de6e-3d39-40e4-af17-bdbb2393c0d9-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/microsoft_paint/15f8de6e-3d39-40e4-af17-bdbb2393c0d9-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/microsoft_paint/3544ac9a-6aee-4a0b-a203-bc7b59b272b6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/microsoft_paint/3544ac9a-6aee-4a0b-a203-bc7b59b272b6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/microsoft_paint/44dbac63-32bf-4cd2-81b4-ad6803ec812d-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/microsoft_paint/44dbac63-32bf-4cd2-81b4-ad6803ec812d-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/004587f8-6028-4656-94c1-681481abbc9c-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/004587f8-6028-4656-94c1-681481abbc9c-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/049d3788-c979-4ea6-934d-3a35c4630faf-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/049d3788-c979-4ea6-934d-3a35c4630faf-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/1376d5e7-deb7-471a-9ecc-c5d4e155b0c8-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/1376d5e7-deb7-471a-9ecc-c5d4e155b0c8-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/1a1ec621-b675-4099-96a9-f702dc27afb4-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/1a1ec621-b675-4099-96a9-f702dc27afb4-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/1c9d2c6c-ae4b-4359-9a93-9d3c42f48417-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/1c9d2c6c-ae4b-4359-9a93-9d3c42f48417-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/2acd62b4-a2ab-44a7-a7e3-f5227bbd8324-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/2acd62b4-a2ab-44a7-a7e3-f5227bbd8324-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/4d34ff3b-5cc8-44b2-a272-fb07927e996e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/4d34ff3b-5cc8-44b2-a272-fb07927e996e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/58f493b5-5a96-4450-99ca-7cebe144c7e5-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/58f493b5-5a96-4450-99ca-7cebe144c7e5-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/5b46f4a4-1a78-4860-ad92-76e051fa7efc-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/5b46f4a4-1a78-4860-ad92-76e051fa7efc-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/98cfcec4-c74e-4faa-b70d-664fb0a1d457-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/98cfcec4-c74e-4faa-b70d-664fb0a1d457-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/b27399ae-e91a-4055-9406-472372e0f5c7-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/b27399ae-e91a-4055-9406-472372e0f5c7-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/bd3e9ea0-a58a-45b3-97be-b418a7e2c0fd-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/bd3e9ea0-a58a-45b3-97be-b418a7e2c0fd-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/ccb22f83-0831-4655-b557-225144b70c71-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/msedge/ccb22f83-0831-4655-b557-225144b70c71-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/notepad/366de66e-cbae-4d72-b042-26390db2b145-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/notepad/366de66e-cbae-4d72-b042-26390db2b145-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/notepad/a7d4b6c5-569b-452e-9e1d-ffdb3d431d15-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/notepad/a7d4b6c5-569b-452e-9e1d-ffdb3d431d15-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/37e10fc4-b4c5-4b02-a65c-bfae8bc51d3f-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/37e10fc4-b4c5-4b02-a65c-bfae8bc51d3f-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/46adf721-2949-4426-b069-010b7c128d8f-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/46adf721-2949-4426-b069-010b7c128d8f-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/9504989a-0d6e-4017-aefb-d359f6c752aa-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/9504989a-0d6e-4017-aefb-d359f6c752aa-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/a659b26e-4e31-40c1-adaf-34742b6c44ac-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/a659b26e-4e31-40c1-adaf-34742b6c44ac-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/e8f68f22-1f6a-4cba-a97a-ac611bb4c67b-wos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/settings/e8f68f22-1f6a-4cba-a97a-ac611bb4c67b-wos.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/215dfd39-f493-4bc3-a027-8a97d72c61bf-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/215dfd39-f493-4bc3-a027-8a97d72c61bf-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/386dbd0e-0241-4a0a-b6a2-6704fba26b1c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/386dbd0e-0241-4a0a-b6a2-6704fba26b1c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/8ba5ae7a-5ae5-4eab-9fcc-5dd4fe3abf89-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/8f080098-ddb1-424c-b438-4e96e5e4786e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/8f080098-ddb1-424c-b438-4e96e5e4786e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/9195653c-f4aa-453d-aa95-787f6ccfaae9-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/9195653c-f4aa-453d-aa95-787f6ccfaae9-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/9195653c-f4aa-453d-aa95-787f6ccfaae9-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/9195653c-f4aa-453d-aa95-787f6ccfaae9-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-0d95d28a-9587-433b-a805-1fbe5467d598-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-0d95d28a-9587-433b-a805-1fbe5467d598-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-5ac2891a-eacd-4954-b339-98abba077adb-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-5ac2891a-eacd-4954-b339-98abba077adb-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-7882ed6e-bece-4bf0-bada-c32dc1ddae72-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-7882ed6e-bece-4bf0-bada-c32dc1ddae72-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-a1c3ab35-02de-4999-a7ed-2fd12c972c6e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-a1c3ab35-02de-4999-a7ed-2fd12c972c6e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-cb130f0d-d36f-4302-9838-b3baf46139b6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-cb130f0d-d36f-4302-9838-b3baf46139b6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-d1ba14d0-fef8-4026-8418-5b581dc68ca0-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-d1ba14d0-fef8-4026-8418-5b581dc68ca0-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-d70666e4-7348-42c7-a06a-664094c5df3c-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/INF-d70666e4-7348-42c7-a06a-664094c5df3c-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/a5bbbcd5-b398-4c91-83d4-55e1e31bbb81-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/a5bbbcd5-b398-4c91-83d4-55e1e31bbb81-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/aa4b5023-aef6-4ed9-bdc9-705f59ab9ad6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/aa4b5023-aef6-4ed9-bdc9-705f59ab9ad6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/d06f0d4d-2cd5-4ede-8de9-598629438c6e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/d06f0d4d-2cd5-4ede-8de9-598629438c6e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/efcf0d81-0835-4880-b2fd-d866e8bc2294-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/efcf0d81-0835-4880-b2fd-d866e8bc2294-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/f3977615-2b45-4ac5-8bba-80c17dbe2a37-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/f3977615-2b45-4ac5-8bba-80c17dbe2a37-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/fba2c100-79e8-42df-ae74-b592418d54f4-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/fba2c100-79e8-42df-ae74-b592418d54f4-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/fcd3d211-80f9-53eg-bf85-c603529e65g5-1-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vlc/fcd3d211-80f9-53eg-bf85-c603529e65g5-1-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/0ed39f63-6049-43d4-ba4d-5fa2fe04a951-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/0ed39f63-6049-43d4-ba4d-5fa2fe04a951-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/276cc624-87ea-4f08-ab93-f770e3790175-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/276cc624-87ea-4f08-ab93-f770e3790175-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/276cc624-87ea-4f08-ab93-f770e3790175-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/276cc624-87ea-4f08-ab93-f770e3790175-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/4e60007a-f5be-4bfc-9723-c39affa0a6d3-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/4e60007a-f5be-4bfc-9723-c39affa0a6d3-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/4e60007a-f5be-4bfc-9723-c39affa0a6d3-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/4e60007a-f5be-4bfc-9723-c39affa0a6d3-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/57242fad-77ca-454f-b71b-f187181a9f23-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/57242fad-77ca-454f-b71b-f187181a9f23-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/5e2d93d8-8ad0-4435-b150-1692aacaa994-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/5e2d93d8-8ad0-4435-b150-1692aacaa994-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/70745df8-f2f5-42bd-8074-fbc10334fcc5-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/70745df8-f2f5-42bd-8074-fbc10334fcc5-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/70745df8-f2f5-42bd-8074-fbc10334fcc5-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/70745df8-f2f5-42bd-8074-fbc10334fcc5-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/930fdb3b-11a8-46fe-9bac-577332e2640e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/930fdb3b-11a8-46fe-9bac-577332e2640e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/9439a27b-18ae-42d8-9778-5f68f891805e-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/9439a27b-18ae-42d8-9778-5f68f891805e-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/982d12a5-beab-424f-8d38-d2a48429e511-2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/982d12a5-beab-424f-8d38-d2a48429e511-2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/982d12a5-beab-424f-8d38-d2a48429e511-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/982d12a5-beab-424f-8d38-d2a48429e511-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/9d425400-e9b2-4424-9a4b-d4c7abac4140-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/9d425400-e9b2-4424-9a4b-d4c7abac4140-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-7aeae0e2-70ee-4705-821d-1bba5d5b2ddd-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-7aeae0e2-70ee-4705-821d-1bba5d5b2ddd-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-7c4cc09e-7a92-40dd-8338-b2286535c4ed-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-7c4cc09e-7a92-40dd-8338-b2286535c4ed-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-847a96b6-df94-4927-97e6-8cc9ea66ced7-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-847a96b6-df94-4927-97e6-8cc9ea66ced7-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-971cbb5b-3cbf-4ff7-9e24-b5c84fcebfa6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-971cbb5b-3cbf-4ff7-9e24-b5c84fcebfa6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-dcbe20e8-647f-4f1d-8696-f1c5bbb570e3-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/INF-dcbe20e8-647f-4f1d-8696-f1c5bbb570e3-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/c6bf789c-ba3a-4209-971d-b63abf0ab733-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/c6bf789c-ba3a-4209-971d-b63abf0ab733-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/e2b5e914-ffe1-44d2-8e92-58f8c5d92bb2-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/e2b5e914-ffe1-44d2-8e92-58f8c5d92bb2-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/ea98c5d7-3cf9-4f9b-8ad3-366b58e0fcae-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/ea98c5d7-3cf9-4f9b-8ad3-366b58e0fcae-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/eabc805a-bfcf-4460-b250-ac92135819f6-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/eabc805a-bfcf-4460-b250-ac92135819f6-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/ec71221e-ac43-46f9-89b8-ee7d80f7e1c5-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/vs_code/ec71221e-ac43-46f9-89b8-ee7d80f7e1c5-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-2.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS-3.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/examples_noctxt/windows_calc/28b91a24-5d97-4c2a-891c-dccbd3820c62-WOS.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/test_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/test_all.json -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/test_custom.json: -------------------------------------------------------------------------------- 1 | { 2 | "msedge": [ 3 | "4d34ff3b-5cc8-44b2-a272-fb07927e996e-WOS" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/win-arena-container/client/evaluation_examples_windows/test_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/evaluation_examples_windows/test_small.json -------------------------------------------------------------------------------- /src/win-arena-container/client/human_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/human_run.py -------------------------------------------------------------------------------- /src/win-arena-container/client/lib_run_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/lib_run_single.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/a11y_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/a11y_demo.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/agent.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/gpt4v_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/gpt4v_azure.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/gpt4v_oai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/gpt4v_oai.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/gpt4v_planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/gpt4v_planner.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/gptx_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/gptx_azure.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/phi3_azure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/phi3_azure.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/phi3_planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/phi3_planner.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/planner_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/planner_messages.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/system_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/system_messages.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/gpt/test_fig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/gpt/test_fig.jpg -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/requirements.txt -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/__init__.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/element_extractor/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/element_extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/element_extractor/element_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/element_extractor/element_utils.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/element_extractor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/element_extractor/utils.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/figs/1360x768_cnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/figs/1360x768_cnn.png -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/config/GroundingDINO_SwinT_OGC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/config/GroundingDINO_SwinT_OGC.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/datasets/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/datasets/transforms.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/groundingdino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/groundingdino.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/icon_localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/icon_localization.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/__init__.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/backbone/__init__.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/backbone/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/backbone/backbone.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/backbone/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/backbone/position_encoding.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/backbone/swin_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/backbone/swin_transformer.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/bertwarper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/bertwarper.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn.h -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn_cpu.cpp -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn_cpu.h -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn_cuda.cu -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_attn_cuda.h -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_im2col_cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/MsDeformAttn/ms_deform_im2col_cuda.cuh -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/cuda_version.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/cuda_version.cu -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/csrc/vision.cpp -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/fuse_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/fuse_modules.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/groundingdino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/groundingdino.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/ms_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/ms_deform_attn.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/transformer.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/transformer_vanilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/transformer_vanilla.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/GroundingDINO/utils.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/__init__.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/models/registry.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved 2 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/box_ops.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/get_tokenlizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/get_tokenlizer.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/inference.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/logger.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/misc.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/slconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/slconfig.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/slio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/slio.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/time_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/time_counter.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/utils.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/visualizer.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/vl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/util/vl_utils.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/groundingdino/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.0' 2 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/ocr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/ocr/ocr_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/ocr/ocr_factory.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/ocr/ocr_tesseract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/ocr/ocr_tesseract.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/ocr/oneocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/ocr/oneocr.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/omniparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/omniparser.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/util/action_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/util/action_matching.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/util/action_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/util/action_type.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/util/box_annotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/util/box_annotator.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/omniparser/utils.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/parser.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/utils/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/utils/arial.ttf -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/utils/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/utils/draw.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/utils/obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/utils/obs.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/utils/som.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/utils/som.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/README.md -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/extract_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/extract_async.py -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/requirements.txt: -------------------------------------------------------------------------------- 1 | pyautogui 2 | playwright 3 | opencv-python -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/stub/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/stub/label.js -------------------------------------------------------------------------------- /src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/webparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/mm_agents/navi/screenparsing_oss/webparse/webparse.py -------------------------------------------------------------------------------- /src/win-arena-container/client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/requirements.txt -------------------------------------------------------------------------------- /src/win-arena-container/client/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/run.py -------------------------------------------------------------------------------- /src/win-arena-container/client/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "time_limit": "1200" 3 | } -------------------------------------------------------------------------------- /src/win-arena-container/client/show_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/show_frames.py -------------------------------------------------------------------------------- /src/win-arena-container/client/show_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/show_result.py -------------------------------------------------------------------------------- /src/win-arena-container/client/trajectory_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/client/trajectory_recorder.py -------------------------------------------------------------------------------- /src/win-arena-container/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/entry.sh -------------------------------------------------------------------------------- /src/win-arena-container/entry_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/entry_setup.sh -------------------------------------------------------------------------------- /src/win-arena-container/fix_az_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/fix_az_network.sh -------------------------------------------------------------------------------- /src/win-arena-container/start_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/start_client.sh -------------------------------------------------------------------------------- /src/win-arena-container/start_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/start_vm.sh -------------------------------------------------------------------------------- /src/win-arena-container/vm/image/README.md: -------------------------------------------------------------------------------- 1 | Add your Win11E setup.iso to this folder -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/install.bat -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/on-logon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/on-logon.ps1 -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/computer.py -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/cursor.png -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/fileexplorer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/fileexplorer_utils.py -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/human.py -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/main.py -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/pyxcursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/pyxcursor.py -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/requirements.txt -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/screen_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/screen_utils.py -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/test.py -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/server/uiautomation_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/server/uiautomation_utils.py -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/setup-tools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/setup-tools.psm1 -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/setup.ps1 -------------------------------------------------------------------------------- /src/win-arena-container/vm/setup/tools_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/setup/tools_config.json -------------------------------------------------------------------------------- /src/win-arena-container/vm/unattend-files/azure_win11x64-enterprise-eval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/unattend-files/azure_win11x64-enterprise-eval.xml -------------------------------------------------------------------------------- /src/win-arena-container/vm/unattend-files/dev_win11x64-enterprise-eval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAgentArena/HEAD/src/win-arena-container/vm/unattend-files/dev_win11x64-enterprise-eval.xml --------------------------------------------------------------------------------