Skip to content

Commit 2e331dc

Browse files
authoredOct 13, 2024
feat: 工作流编排支持并行 #1154 (#1362)
1 parent 277e135 commit 2e331dc

File tree

6 files changed

+282
-109
lines changed

6 files changed

+282
-109
lines changed
 

‎apps/application/flow/i_step_node.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def write_context(step_variable: Dict, global_variable: Dict, node, workflow):
2828
if step_variable is not None:
2929
for key in step_variable:
3030
node.context[key] = step_variable[key]
31-
if workflow.is_result() and 'answer' in step_variable:
31+
if workflow.is_result(node, NodeResult(step_variable, global_variable)) and 'answer' in step_variable:
3232
answer = step_variable['answer']
3333
yield answer
3434
workflow.answer += answer
@@ -166,6 +166,7 @@ def get_flow_params_serializer_class(self) -> Type[serializers.Serializer]:
166166
def get_write_error_context(self, e):
167167
self.status = 500
168168
self.err_message = str(e)
169+
self.context['run_time'] = time.time() - self.context['start_time']
169170

170171
def write_error_context(answer, status=200):
171172
pass

‎apps/application/flow/step_node/ai_chat_step_node/impl/base_chat_node.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _write_context(node_variable: Dict, workflow_variable: Dict, node: INode, wo
3131
node.context['history_message'] = node_variable['history_message']
3232
node.context['question'] = node_variable['question']
3333
node.context['run_time'] = time.time() - node.context['start_time']
34-
if workflow.is_result():
34+
if workflow.is_result(node, NodeResult(node_variable, workflow_variable)):
3535
workflow.answer += answer
3636

3737

‎apps/application/flow/step_node/function_lib_node/impl/base_function_lib_node.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def write_context(step_variable: Dict, global_variable: Dict, node, workflow):
2626
if step_variable is not None:
2727
for key in step_variable:
2828
node.context[key] = step_variable[key]
29-
if workflow.is_result() and 'result' in step_variable:
29+
if workflow.is_result(node, NodeResult(step_variable, global_variable)) and 'result' in step_variable:
3030
result = str(step_variable['result']) + '\n'
3131
yield result
3232
workflow.answer += result

0 commit comments

Comments
 (0)