feat: Add GROUP node type and update node configuration filtering in Graph class

This commit is contained in:
zhsama
2025-12-23 20:44:36 +08:00
parent 7b660a9ebc
commit 18ea9d3f18
2 changed files with 9 additions and 1 deletions

View File

@ -63,6 +63,7 @@ class NodeType(StrEnum):
TRIGGER_SCHEDULE = "trigger-schedule"
TRIGGER_PLUGIN = "trigger-plugin"
HUMAN_INPUT = "human-input"
GROUP = "group"
@property
def is_trigger_node(self) -> bool: