├── .github └── workflows │ └── publish_action.yml ├── .gitignore ├── AGENTS.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── __init__.py ├── nodes.py ├── pyproject.toml ├── requirements.txt ├── tests ├── __init__.py └── test_nodes.py └── workflow ├── Qwen2VL.json ├── comfy_workflow.png ├── comfy_workflow2.png └── qwen25.json /.github/workflows/publish_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/.github/workflows/publish_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/__init__.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/tests/test_nodes.py -------------------------------------------------------------------------------- /workflow/Qwen2VL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/workflow/Qwen2VL.json -------------------------------------------------------------------------------- /workflow/comfy_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/workflow/comfy_workflow.png -------------------------------------------------------------------------------- /workflow/comfy_workflow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/workflow/comfy_workflow2.png -------------------------------------------------------------------------------- /workflow/qwen25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcong/ComfyUI_QwenVL/HEAD/workflow/qwen25.json --------------------------------------------------------------------------------