-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path__init__.py
More file actions
18 lines (15 loc) · 792 Bytes
/
__init__.py
File metadata and controls
18 lines (15 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from .hidreamsampler import HiDreamSampler, HiDreamSamplerAdvanced, HiDreamImg2Img, HiDreamResolutionSelect
NODE_CLASS_MAPPINGS = {
"HiDreamSampler": HiDreamSampler,
"HiDreamSamplerAdvanced": HiDreamSamplerAdvanced,
"HiDreamImg2Img": HiDreamImg2Img,
"HiDreamResolutionSelect": HiDreamResolutionSelect # Added new node class
}
NODE_DISPLAY_NAME_MAPPINGS = {
"HiDreamSampler": "HiDream Sampler",
"HiDreamSamplerAdvanced": "HiDream Sampler (Advanced)",
"HiDreamImg2Img": "HiDream Image to Image",
"HiDreamResolutionSelect": "HiDream Resolution Select" # Added display name for new node
}
WEB_DIRECTORY = "./web" # Assuming you have this directory for web-related files, if any
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]