├── .DS_Store ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── pull_format.yml │ └── push_format ├── .gitignore ├── LICENSE ├── README.md ├── install.py ├── model.json └── scripts └── main.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pull_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/.github/workflows/pull_format.yml -------------------------------------------------------------------------------- /.github/workflows/push_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/.github/workflows/push_format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/README.md -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/install.py -------------------------------------------------------------------------------- /model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/model.json -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tps-F/sd-webui-blip2/HEAD/scripts/main.py --------------------------------------------------------------------------------