├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── apg_node.py └── example_workflows └── apg_example_workflow.json /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-APGScaling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-APGScaling/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-APGScaling/HEAD/__init__.py -------------------------------------------------------------------------------- /apg_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-APGScaling/HEAD/apg_node.py -------------------------------------------------------------------------------- /example_workflows/apg_example_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-APGScaling/HEAD/example_workflows/apg_example_workflow.json --------------------------------------------------------------------------------