├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── api.py ├── js ├── app.js ├── dist │ ├── assets │ │ ├── index-C6qYZNea.js │ │ ├── index-Cy3_aF3j.js │ │ └── index-h76qJvKR.css │ └── index.html ├── gallery.html ├── gallery.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── App.jsx │ ├── api.js │ ├── components │ │ ├── DynamicForm.jsx │ │ ├── GalleryItem.jsx │ │ ├── ImageInput.jsx │ │ ├── Layout.jsx │ │ ├── WorkflowSelector.jsx │ │ └── inputs │ │ │ ├── BooleanInput.jsx │ │ │ ├── DropdownInput.jsx │ │ │ ├── NumberInput.jsx │ │ │ └── StringInput.jsx │ ├── index.css │ ├── main.jsx │ └── pages │ │ ├── Gallery.jsx │ │ └── MainPage.jsx ├── style.css ├── tailwind.config.js ├── vite.config.js └── web │ ├── cozygen_choice_input.js │ └── cozygen_dynamic_input.js ├── nodes.py ├── requirements.txt └── workflows ├── CozyGen_Flux_example.json ├── CozyGen_QWEN_Image_Edit_example.json ├── CozyGen_Wan2.2_i2v_GGUF_example.json ├── CozyGen_Wan2.2_t2v_GGUF_example.json └── CozyGen_i2i_example.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/__init__.py -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/api.py -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/app.js -------------------------------------------------------------------------------- /js/dist/assets/index-C6qYZNea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/dist/assets/index-C6qYZNea.js -------------------------------------------------------------------------------- /js/dist/assets/index-Cy3_aF3j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/dist/assets/index-Cy3_aF3j.js -------------------------------------------------------------------------------- /js/dist/assets/index-h76qJvKR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/dist/assets/index-h76qJvKR.css -------------------------------------------------------------------------------- /js/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/dist/index.html -------------------------------------------------------------------------------- /js/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/gallery.html -------------------------------------------------------------------------------- /js/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/gallery.js -------------------------------------------------------------------------------- /js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/index.html -------------------------------------------------------------------------------- /js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/package-lock.json -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/package.json -------------------------------------------------------------------------------- /js/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/postcss.config.js -------------------------------------------------------------------------------- /js/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/App.jsx -------------------------------------------------------------------------------- /js/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/api.js -------------------------------------------------------------------------------- /js/src/components/DynamicForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/DynamicForm.jsx -------------------------------------------------------------------------------- /js/src/components/GalleryItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/GalleryItem.jsx -------------------------------------------------------------------------------- /js/src/components/ImageInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/ImageInput.jsx -------------------------------------------------------------------------------- /js/src/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/Layout.jsx -------------------------------------------------------------------------------- /js/src/components/WorkflowSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/WorkflowSelector.jsx -------------------------------------------------------------------------------- /js/src/components/inputs/BooleanInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/inputs/BooleanInput.jsx -------------------------------------------------------------------------------- /js/src/components/inputs/DropdownInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/inputs/DropdownInput.jsx -------------------------------------------------------------------------------- /js/src/components/inputs/NumberInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/inputs/NumberInput.jsx -------------------------------------------------------------------------------- /js/src/components/inputs/StringInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/components/inputs/StringInput.jsx -------------------------------------------------------------------------------- /js/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/index.css -------------------------------------------------------------------------------- /js/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/main.jsx -------------------------------------------------------------------------------- /js/src/pages/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/pages/Gallery.jsx -------------------------------------------------------------------------------- /js/src/pages/MainPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/src/pages/MainPage.jsx -------------------------------------------------------------------------------- /js/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/style.css -------------------------------------------------------------------------------- /js/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/tailwind.config.js -------------------------------------------------------------------------------- /js/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/vite.config.js -------------------------------------------------------------------------------- /js/web/cozygen_choice_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/web/cozygen_choice_input.js -------------------------------------------------------------------------------- /js/web/cozygen_dynamic_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/js/web/cozygen_dynamic_input.js -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/requirements.txt -------------------------------------------------------------------------------- /workflows/CozyGen_Flux_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/workflows/CozyGen_Flux_example.json -------------------------------------------------------------------------------- /workflows/CozyGen_QWEN_Image_Edit_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/workflows/CozyGen_QWEN_Image_Edit_example.json -------------------------------------------------------------------------------- /workflows/CozyGen_Wan2.2_i2v_GGUF_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/workflows/CozyGen_Wan2.2_i2v_GGUF_example.json -------------------------------------------------------------------------------- /workflows/CozyGen_Wan2.2_t2v_GGUF_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/workflows/CozyGen_Wan2.2_t2v_GGUF_example.json -------------------------------------------------------------------------------- /workflows/CozyGen_i2i_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsusgg/ComfyUI_CozyGen/HEAD/workflows/CozyGen_i2i_example.json --------------------------------------------------------------------------------