mirror of https://github.com/langgenius/dify.git
fix bug
This commit is contained in:
parent
a65c99496b
commit
77bdc6ffb1
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue