forked from nullquant/ComfyUI-BrushNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
24 lines (22 loc) · 770 Bytes
/
Copy path__init__.py
File metadata and controls
24 lines (22 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from .brushnet_nodes import BrushNetLoader, BrushNet, BlendInpaint#, TestNode
"""
@author: nullquant
@title: BrushNet
@nickname: BrushName nodes
@description: This repository contains an custom nodes for inpaint using BrushNet and PowerPaint models
"""
# A dictionary that contains all nodes you want to export with their names
# NOTE: names should be globally unique
NODE_CLASS_MAPPINGS = {
"BrushNetLoader": BrushNetLoader,
"BrushNet": BrushNet,
"BlendInpaint": BlendInpaint,
# "TestNode": TestNode,
}
# A dictionary that contains the friendly/humanly readable titles for the nodes
NODE_DISPLAY_NAME_MAPPINGS = {
"BrushNetLoader": "BrushNet Loader",
"BrushNet": "BrushNet",
"BlendInpaint": "Blend Inpaint",
# "TestNode": "Test Node",
}