-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy path__init__.py
20 lines (18 loc) · 907 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from .latents import LTXVSelectLatents, LTXVSetVideoLatentNoiseMasks # noqa: F401
from .nodes_registry import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
from .prompt_enhancer_nodes import ( # noqa: F401
LTXVPromptEnhancer,
LTXVPromptEnhancerLoader,
)
from .recurrent_sampler import ( # noqa: F401
LinearOverlapLatentTransition,
LTXVRecurrentKSampler,
)
from .stg import LTXVApplySTG, STGGuiderAdvancedNode, STGGuiderNode # noqa: F401
from .tricks import NODE_CLASS_MAPPINGS as TRICKS_NODE_CLASS_MAPPINGS
from .tricks import NODE_DISPLAY_NAME_MAPPINGS as TRICKS_NODE_DISPLAY_NAME_MAPPINGS
# Merge the node mappings from tricks into the main mappings
NODE_CLASS_MAPPINGS.update(TRICKS_NODE_CLASS_MAPPINGS)
NODE_DISPLAY_NAME_MAPPINGS.update(TRICKS_NODE_DISPLAY_NAME_MAPPINGS)
# Export so that ComfyUI can pick them up.
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]