Skip to content

Commit 1eb9315

Browse files
committed
Initial commit
1 parent f75ee70 commit 1eb9315

23 files changed

+156260
-1
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
__pycache__/
2+
checkpoints/
3+
*.py[cod]
4+
*$py.class
5+
*.egg-info
6+
.pytest_cache

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Apache License
1+
Apache License
22
Version 2.0, January 2004
33
http://www.apache.org/licenses/
44

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# ComfyUI wrapper nodes to use the Diffusers implementation of BrushNet
2+
3+
4+
5+
# Installing
6+
Either use the Manager and it's install from git -feature, or clone this repo to custom_nodes and run:
7+
8+
`pip install -r requirements.txt`
9+
10+
or if you use portable (run this in ComfyUI_windows_portable -folder):
11+
12+
`python_embeded\python.exe -m pip install -r ComfyUI\custom_nodes\ComfyUI-BrushNetWrapper\requirements.txt`
13+
14+
Models are automatically downloaded from here: https://huggingface.co/Kijai/BrushNet-fp16/tree/main
15+
16+
to `ComfyUI/models/brushnet`

__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
2+
3+
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]

brushnet/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
__pycache__/
2+
checkpoints/
3+
*.py[cod]
4+
*$py.class
5+
*.egg-info
6+
.pytest_cache

0 commit comments

Comments
 (0)