Feat/loop node (#17273)

This commit is contained in:
Dongyu Li
2025-04-02 13:53:26 +08:00
committed by GitHub
parent 11e95d2a61
commit 8c77f2dc03
8 changed files with 324 additions and 131 deletions

View File

@@ -17,6 +17,7 @@ class NodeType(StrEnum):
LEGACY_VARIABLE_AGGREGATOR = "variable-assigner" # TODO: Merge this into VARIABLE_AGGREGATOR in the database.
LOOP = "loop"
LOOP_START = "loop-start"
LOOP_END = "loop-end"
ITERATION = "iteration"
ITERATION_START = "iteration-start" # Fake start node for iteration.
PARAMETER_EXTRACTOR = "parameter-extractor"