├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── blockpatcher.py ├── flux_hook.py ├── fonts └── ShareTechMono-Regular.ttf └── workflows ├── block_patcher.json └── shareKV.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/__init__.py -------------------------------------------------------------------------------- /blockpatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/blockpatcher.py -------------------------------------------------------------------------------- /flux_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/flux_hook.py -------------------------------------------------------------------------------- /fonts/ShareTechMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/fonts/ShareTechMono-Regular.ttf -------------------------------------------------------------------------------- /workflows/block_patcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/workflows/block_patcher.json -------------------------------------------------------------------------------- /workflows/shareKV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubiq/Block_Patcher_ComfyUI/HEAD/workflows/shareKV.json --------------------------------------------------------------------------------