├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── examples ├── AnimateDiff_00002.mp4 ├── Chat_with_multiple_images_workflow.json ├── Chat_with_multiple_images_workflow.png ├── Chat_with_single_image_workflow.json ├── Chat_with_single_image_workflow.png ├── Chat_with_text_workflow.json ├── Chat_with_text_workflow.png ├── Chat_with_video_workflow.json ├── Chat_with_video_workflow.png ├── ComfyUI_00508_.png ├── ComfyUI_00509_.png └── ComfyUI_00532_.png ├── favicon.ico ├── node_helpers.py ├── nodes.py ├── path_nodes.py ├── pyproject.toml ├── requirements.txt ├── util_nodes.py └── web └── js └── multiplePathsInput.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/__init__.py -------------------------------------------------------------------------------- /examples/AnimateDiff_00002.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/AnimateDiff_00002.mp4 -------------------------------------------------------------------------------- /examples/Chat_with_multiple_images_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/Chat_with_multiple_images_workflow.json -------------------------------------------------------------------------------- /examples/Chat_with_multiple_images_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/Chat_with_multiple_images_workflow.png -------------------------------------------------------------------------------- /examples/Chat_with_single_image_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/Chat_with_single_image_workflow.json -------------------------------------------------------------------------------- /examples/Chat_with_single_image_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/Chat_with_single_image_workflow.png -------------------------------------------------------------------------------- /examples/Chat_with_text_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/Chat_with_text_workflow.json -------------------------------------------------------------------------------- /examples/Chat_with_text_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/Chat_with_text_workflow.png -------------------------------------------------------------------------------- /examples/Chat_with_video_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/Chat_with_video_workflow.json -------------------------------------------------------------------------------- /examples/Chat_with_video_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/Chat_with_video_workflow.png -------------------------------------------------------------------------------- /examples/ComfyUI_00508_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/ComfyUI_00508_.png -------------------------------------------------------------------------------- /examples/ComfyUI_00509_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/ComfyUI_00509_.png -------------------------------------------------------------------------------- /examples/ComfyUI_00532_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/examples/ComfyUI_00532_.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/favicon.ico -------------------------------------------------------------------------------- /node_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/node_helpers.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/nodes.py -------------------------------------------------------------------------------- /path_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/path_nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/requirements.txt -------------------------------------------------------------------------------- /util_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/util_nodes.py -------------------------------------------------------------------------------- /web/js/multiplePathsInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IuvenisSapiens/ComfyUI_Qwen3-VL-Instruct/HEAD/web/js/multiplePathsInput.js --------------------------------------------------------------------------------