├── .gitignore ├── README.md ├── __init__.py ├── js └── operation-node.js ├── nodes.py ├── operations.py └── startup_utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyLiterals/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyLiterals/HEAD/__init__.py -------------------------------------------------------------------------------- /js/operation-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyLiterals/HEAD/js/operation-node.js -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyLiterals/HEAD/nodes.py -------------------------------------------------------------------------------- /operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyLiterals/HEAD/operations.py -------------------------------------------------------------------------------- /startup_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyLiterals/HEAD/startup_utils.py --------------------------------------------------------------------------------