gitextract_uizze8ok/ ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── demo.ipynb ├── docs/ │ └── Evaluation.md ├── eval/ │ ├── logs_sspro_omniv2.json │ └── ss_pro_gpt4o_omniv2.py ├── gradio_demo.py ├── omnitool/ │ ├── gradio/ │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── agent/ │ │ │ ├── anthropic_agent.py │ │ │ ├── llm_utils/ │ │ │ │ ├── groqclient.py │ │ │ │ ├── oaiclient.py │ │ │ │ ├── omniparserclient.py │ │ │ │ └── utils.py │ │ │ ├── vlm_agent.py │ │ │ └── vlm_agent_with_orchestrator.py │ │ ├── app.py │ │ ├── app_new.py │ │ ├── app_streamlit.py │ │ ├── executor/ │ │ │ └── anthropic_executor.py │ │ ├── loop.py │ │ └── tools/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── collection.py │ │ ├── computer.py │ │ └── screen_capture.py │ ├── omnibox/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── compose.yml │ │ ├── scripts/ │ │ │ ├── manage_vm.ps1 │ │ │ └── manage_vm.sh │ │ └── vm/ │ │ ├── buildcontainer/ │ │ │ ├── define.sh │ │ │ ├── entry.sh │ │ │ ├── install.sh │ │ │ ├── power.sh │ │ │ └── samba.sh │ │ ├── win11def/ │ │ │ └── win11x64-enterprise-eval.xml │ │ ├── win11iso/ │ │ │ └── README.md │ │ └── win11setup/ │ │ ├── firstboot/ │ │ │ └── install.bat │ │ └── setupscripts/ │ │ ├── on-logon.ps1 │ │ ├── server/ │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ ├── setup-tools.psm1 │ │ ├── setup.ps1 │ │ └── tools_config.json │ ├── omniparserserver/ │ │ └── omniparserserver.py │ └── readme.md ├── requirements.txt └── util/ ├── __init__.py ├── box_annotator.py ├── omniparser.py └── utils.py