├── .github └── workflows │ └── publish.yml ├── AILab_QwenVL.py ├── LICENSE ├── README.md ├── README_zh.md ├── __init__.py ├── config.json ├── custom_models_example.json ├── docs └── custom_models.md ├── example_workflows ├── QWenVL.jpg └── QWenVL.json ├── pyproject.toml ├── requirements.txt ├── update.md └── web └── js └── appearance.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /AILab_QwenVL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/AILab_QwenVL.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/README_zh.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/__init__.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/config.json -------------------------------------------------------------------------------- /custom_models_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/custom_models_example.json -------------------------------------------------------------------------------- /docs/custom_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/docs/custom_models.md -------------------------------------------------------------------------------- /example_workflows/QWenVL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/example_workflows/QWenVL.jpg -------------------------------------------------------------------------------- /example_workflows/QWenVL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/example_workflows/QWenVL.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/requirements.txt -------------------------------------------------------------------------------- /update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/update.md -------------------------------------------------------------------------------- /web/js/appearance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-QwenVL/HEAD/web/js/appearance.js --------------------------------------------------------------------------------