├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── example ├── Pixtral large 1 input.json └── Pixtral large 3 inputs.json ├── pixtral_large_node.py ├── pyproject.toml ├── requirements.txt └── web └── js ├── multiimagesinput.js └── preview-text.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/__init__.py -------------------------------------------------------------------------------- /example/Pixtral large 1 input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/example/Pixtral large 1 input.json -------------------------------------------------------------------------------- /example/Pixtral large 3 inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/example/Pixtral large 3 inputs.json -------------------------------------------------------------------------------- /pixtral_large_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/pixtral_large_node.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | Pillow 3 | -------------------------------------------------------------------------------- /web/js/multiimagesinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/web/js/multiimagesinput.js -------------------------------------------------------------------------------- /web/js/preview-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI_pixtral_large/HEAD/web/js/preview-text.js --------------------------------------------------------------------------------