This commit is contained in:
takatost 2024-03-20 17:36:56 +08:00
parent a65c99496b
commit 77bdc6ffb1
2 changed files with 2 additions and 0 deletions

View File

@ -245,6 +245,7 @@ class NodeFinishStreamResponse(StreamResponse):
id: str
node_id: str
node_type: str
title: str
index: int
predecessor_node_id: Optional[str] = None
inputs: Optional[dict] = None

View File

@ -360,6 +360,7 @@ class WorkflowCycleManage:
node_id=workflow_node_execution.node_id,
node_type=workflow_node_execution.node_type,
index=workflow_node_execution.index,
title=workflow_node_execution.title,
predecessor_node_id=workflow_node_execution.predecessor_node_id,
inputs=workflow_node_execution.inputs_dict,
process_data=workflow_node_execution.process_data_dict,