-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
FS_Mappings.py
50 lines (39 loc) · 1.35 KB
/
FS_Mappings.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Project: FlowState Node Mappings
# Description: Node mappings for ComfyUI registry.
# Author: Johnathan Chivington
# Contact: johnathan@flowstateengineering.com | youtube.com/@flowstateeng
##
# FS IMPORTS
##
from .FS_Nodes import *
##
# SYSTEM STATUS
##
print(f' - Loading node name mappings...')
##
# MAPPINGS
##
NODE_CLASS_MAPPINGS = {
'FlowStateUnifiedVideoSampler': FlowStateUnifiedVideoSampler,
'FlowStateUnifiedSampler': FlowStateUnifiedSampler,
'FlowStateUnifiedModelLoader': FlowStateUnifiedModelLoader,
'FlowStateUnifiedPrompt': FlowStateUnifiedPrompt,
'FlowStatePromptOutput': FlowStatePromptOutput,
'FlowStateLatentChooser': FlowStateLatentChooser,
'FlowStateUnifiedStyler': FlowStateUnifiedStyler
}
NODE_DISPLAY_NAME_MAPPINGS = {
'FlowStateUnifiedVideoSampler': 'FlowState Unified Video Sampler',
'FlowStateUnifiedSampler': 'FlowState Unified Sampler',
'FlowStateUnifiedModelLoader': 'FlowState Unified Model Loader',
'FlowStateUnifiedPrompt': 'FlowState Unified Prompt',
'FlowStatePromptOutput': 'FlowState Prompt Output',
'FlowStateLatentChooser': 'FlowState Latent Chooser',
'FlowStateUnifiedStyler': 'FlowState Unified Styler'
}
##
# SYSTEM STATUS
##
print(f' - Mappings Loaded. Available nodes:')
for fs_node in NODE_CLASS_MAPPINGS:
print(f' - {fs_node}: {NODE_CLASS_MAPPINGS[fs_node]}')