diff --git a/__init__.py b/__init__.py index 99a5a88..c9d8310 100644 --- a/__init__.py +++ b/__init__.py @@ -1,6 +1,10 @@ """ ComfyUI-PrismAudio: Video-to-Audio and Text-to-Audio generation using PrismAudio (ICLR 2026). """ +import sys +import os +sys.path.insert(0, os.path.dirname(__file__)) + from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS __all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]