-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
43 lines (34 loc) · 1.48 KB
/
__init__.py
File metadata and controls
43 lines (34 loc) · 1.48 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
"""
ComfyUI-LLMs-Toolkit: Lightweight LLM API integration for ComfyUI.
Auto-registration mechanism for all nodes.
"""
from pathlib import Path
import importlib.util
import sys
# Initialize mappings
NODE_CLASS_MAPPINGS = {}
NODE_DISPLAY_NAME_MAPPINGS = {}
# Auto-load all nodes from nodes/ directory
nodes_dir = Path(__file__).parent / "nodes"
if nodes_dir.exists():
for py_file in sorted(nodes_dir.glob("*.py")):
if py_file.stem.startswith("_"):
continue
try:
# Load module
module_name = f"ComfyUI-LLMs-Toolkit.nodes.{py_file.stem}"
spec = importlib.util.spec_from_file_location(module_name, py_file)
module = importlib.util.module_from_spec(spec)
sys.modules[module_name] = module
# Also register under simple name for inter-module imports
sys.modules[py_file.stem] = module
spec.loader.exec_module(module)
# Register node mappings
if hasattr(module, "NODE_CLASS_MAPPINGS"):
NODE_CLASS_MAPPINGS.update(module.NODE_CLASS_MAPPINGS)
if hasattr(module, "NODE_DISPLAY_NAME_MAPPINGS"):
NODE_DISPLAY_NAME_MAPPINGS.update(module.NODE_DISPLAY_NAME_MAPPINGS)
except Exception as e:
print(f"[LLMs_Toolkit] Failed to load {py_file.stem}: {e}")
WEB_DIRECTORY = "./web"
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]