├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── __init__.py ├── configs └── lotus_unet_config.json ├── empty_text_embed.pt ├── examples ├── lotus_depth_g_example_01.json └── lotus_normal_g_example_01.json ├── nodes.py ├── pyproject.toml └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/__init__.py -------------------------------------------------------------------------------- /configs/lotus_unet_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/configs/lotus_unet_config.json -------------------------------------------------------------------------------- /empty_text_embed.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/empty_text_embed.pt -------------------------------------------------------------------------------- /examples/lotus_depth_g_example_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/examples/lotus_depth_g_example_01.json -------------------------------------------------------------------------------- /examples/lotus_normal_g_example_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/examples/lotus_normal_g_example_01.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-Lotus/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | diffusers --------------------------------------------------------------------------------