├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── lcm ├── __init__.py ├── lcm_pipeline.py └── lcm_scheduler.py ├── nodes.py ├── requirements.txt ├── sample.png └── scheduler_config.json /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowtyone/comfyui-flowty-lcm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowtyone/comfyui-flowty-lcm/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowtyone/comfyui-flowty-lcm/HEAD/__init__.py -------------------------------------------------------------------------------- /lcm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lcm/lcm_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowtyone/comfyui-flowty-lcm/HEAD/lcm/lcm_pipeline.py -------------------------------------------------------------------------------- /lcm/lcm_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowtyone/comfyui-flowty-lcm/HEAD/lcm/lcm_scheduler.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowtyone/comfyui-flowty-lcm/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | diffusers -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowtyone/comfyui-flowty-lcm/HEAD/sample.png -------------------------------------------------------------------------------- /scheduler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowtyone/comfyui-flowty-lcm/HEAD/scheduler_config.json --------------------------------------------------------------------------------