├── .github └── workflows │ └── publish.yml ├── .gitignore ├── AILab_OmniGen.py ├── Examples ├── OmniGen_wf.json ├── depthmap2image.json ├── imgs │ ├── PoseToImage.jpg │ ├── PoseToImage_wf.jpg │ ├── Thumbs.db │ ├── anime.jpg │ ├── blur.jpg │ ├── cs.jpg │ ├── cs_oc.jpg │ ├── deblur.jpg │ ├── deblur_wf.jpg │ ├── deptnmapToImage_wf.jpg │ ├── m1.jpg │ ├── m1_depthmap.jpg │ ├── m1_skeleton.jpg │ ├── m1a.jpg │ ├── omnigen_combine.jpg │ ├── omnigen_t2i_i2i.jpg │ ├── wm1.jpg │ ├── wm1mt.jpg │ └── wm1op.jpg ├── omnigen_combine.json └── omnigen_t2i_i2i.json ├── LICENSE ├── README.md ├── UPDATE.md ├── __init__.py ├── data.json ├── pyproject.toml └── requirements.txt /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/.gitignore -------------------------------------------------------------------------------- /AILab_OmniGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/AILab_OmniGen.py -------------------------------------------------------------------------------- /Examples/OmniGen_wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/OmniGen_wf.json -------------------------------------------------------------------------------- /Examples/depthmap2image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/depthmap2image.json -------------------------------------------------------------------------------- /Examples/imgs/PoseToImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/PoseToImage.jpg -------------------------------------------------------------------------------- /Examples/imgs/PoseToImage_wf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/PoseToImage_wf.jpg -------------------------------------------------------------------------------- /Examples/imgs/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/Thumbs.db -------------------------------------------------------------------------------- /Examples/imgs/anime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/anime.jpg -------------------------------------------------------------------------------- /Examples/imgs/blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/blur.jpg -------------------------------------------------------------------------------- /Examples/imgs/cs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/cs.jpg -------------------------------------------------------------------------------- /Examples/imgs/cs_oc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/cs_oc.jpg -------------------------------------------------------------------------------- /Examples/imgs/deblur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/deblur.jpg -------------------------------------------------------------------------------- /Examples/imgs/deblur_wf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/deblur_wf.jpg -------------------------------------------------------------------------------- /Examples/imgs/deptnmapToImage_wf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/deptnmapToImage_wf.jpg -------------------------------------------------------------------------------- /Examples/imgs/m1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/m1.jpg -------------------------------------------------------------------------------- /Examples/imgs/m1_depthmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/m1_depthmap.jpg -------------------------------------------------------------------------------- /Examples/imgs/m1_skeleton.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/m1_skeleton.jpg -------------------------------------------------------------------------------- /Examples/imgs/m1a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/m1a.jpg -------------------------------------------------------------------------------- /Examples/imgs/omnigen_combine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/omnigen_combine.jpg -------------------------------------------------------------------------------- /Examples/imgs/omnigen_t2i_i2i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/omnigen_t2i_i2i.jpg -------------------------------------------------------------------------------- /Examples/imgs/wm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/wm1.jpg -------------------------------------------------------------------------------- /Examples/imgs/wm1mt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/wm1mt.jpg -------------------------------------------------------------------------------- /Examples/imgs/wm1op.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/imgs/wm1op.jpg -------------------------------------------------------------------------------- /Examples/omnigen_combine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/omnigen_combine.json -------------------------------------------------------------------------------- /Examples/omnigen_t2i_i2i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/Examples/omnigen_t2i_i2i.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/README.md -------------------------------------------------------------------------------- /UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/UPDATE.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/__init__.py -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/data.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1038lab/ComfyUI-OmniGen/HEAD/requirements.txt --------------------------------------------------------------------------------