-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
30 lines (26 loc) · 719 Bytes
/
__init__.py
File metadata and controls
30 lines (26 loc) · 719 Bytes
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
from . import (
gemini_node_vertex,
gemini_segment_vertex,
nano_banana_vertex,
gemini_tts_vertex,
veo_vertex,
gemini_diarisation_vertex,
imagen_edit_vertex,
imagen_vertex,
)
NODE_CLASS_MAPPINGS = {}
NODE_DISPLAY_NAME_MAPPINGS = {}
modules = [
gemini_node_vertex,
gemini_segment_vertex,
nano_banana_vertex,
gemini_tts_vertex,
veo_vertex,
gemini_diarisation_vertex,
imagen_edit_vertex,
imagen_vertex,
]
for module in modules:
NODE_CLASS_MAPPINGS.update(getattr(module, "NODE_CLASS_MAPPINGS", {}))
NODE_DISPLAY_NAME_MAPPINGS.update(getattr(module, "NODE_DISPLAY_NAME_MAPPINGS", {}))
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]