Merge branch 'feat/queue-based-graph-engine' into feat/rag-2

This commit is contained in:
jyong
2025-08-28 18:12:49 +08:00
71 changed files with 801 additions and 2326 deletions

View File

@ -66,6 +66,7 @@ class NodeExecutionType(StrEnum):
RESPONSE = "response" # Response nodes that stream outputs (Answer, End)
BRANCH = "branch" # Nodes that can choose different branches (if-else, question-classifier)
CONTAINER = "container" # Container nodes that manage subgraphs (iteration, loop, graph)
ROOT = "root" # Nodes that can serve as execution entry points
class ErrorStrategy(StrEnum):