-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
31 lines (29 loc) · 1.13 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# __init__.py
from .layered_infinite_zoom import LayeredInfiniteZoom
from .replicate_Flux_Pro_Ultra import ReplicateAPI_flux_1_1_pro_ultra
from .replicate_Flux_Fill import ReplicateAPI_flux_fill_pro
from .iframe_view import IframeView
from .queue_counter_reset import DynamicQueueCounter
from .custom_name_selector import IndexedStringSelector
WEB_DIRECTORY = "./js"
NODE_CLASS_MAPPINGS = {
"LayeredInfiniteZoom": LayeredInfiniteZoom,
"ReplicateAPI_flux_1_1_pro_ultra": ReplicateAPI_flux_1_1_pro_ultra,
"ReplicateAPI_flux_fill_pro": ReplicateAPI_flux_fill_pro,
"IframeView": IframeView,
"DynamicQueueCounter": DynamicQueueCounter,
"IndexedStringSelector": IndexedStringSelector
}
NODE_DISPLAY_NAME_MAPPINGS = {
"LayeredInfiniteZoom": "Layered Infinite Zoom",
"ReplicateAPI_flux_1_1_pro_ultra": "Replicate flux 1.1 pro ultra",
"ReplicateAPI_flux_fill_pro": "Replicate flux fill pro",
"IframeView": "Iframe View",
"DynamicQueueCounter": "Dynamic Queue Counter",
"IndexedStringSelector": "Indexed String Selector"
}
__all__ = [
"NODE_CLASS_MAPPINGS",
"NODE_DISPLAY_NAME_MAPPINGS",
"WEB_DIRECTORY"
]