gitextract_otm8wgpb/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── upload-package.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── evaluate.py ├── operate/ │ ├── __init__.py │ ├── config.py │ ├── exceptions.py │ ├── main.py │ ├── models/ │ │ ├── __init__.py │ │ ├── apis.py │ │ ├── prompts.py │ │ └── weights/ │ │ ├── __init__.py │ │ └── best.pt │ ├── operate.py │ └── utils/ │ ├── __init__.py │ ├── label.py │ ├── misc.py │ ├── ocr.py │ ├── operating_system.py │ ├── screenshot.py │ └── style.py ├── requirements-audio.txt ├── requirements.txt └── setup.py