├── .gitignore ├── README.md ├── __init__.py ├── images ├── another_source_image.png ├── example1.png ├── example2a.png └── lysol.png ├── requirements.txt └── stablezero123.py /.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroberon/StableZero123-comfyui/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroberon/StableZero123-comfyui/HEAD/__init__.py -------------------------------------------------------------------------------- /images/another_source_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroberon/StableZero123-comfyui/HEAD/images/another_source_image.png -------------------------------------------------------------------------------- /images/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroberon/StableZero123-comfyui/HEAD/images/example1.png -------------------------------------------------------------------------------- /images/example2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroberon/StableZero123-comfyui/HEAD/images/example2a.png -------------------------------------------------------------------------------- /images/lysol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroberon/StableZero123-comfyui/HEAD/images/lysol.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | diffusers~=0.21.4 2 | -------------------------------------------------------------------------------- /stablezero123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deroberon/StableZero123-comfyui/HEAD/stablezero123.py --------------------------------------------------------------------------------