fix: 修复表单设置后的文档内容提取节点不能输出内容 (#1726)

This commit is contained in:
shaohuzhang1 2024-12-02 10:54:35 +08:00 committed by GitHub
parent be53247bcd
commit be10863a97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,6 +37,8 @@ class BaseStartStepNode(IStarNode):
workflow_variable = {**default_global_variable, **get_global_variable(self)}
self.context['question'] = details.get('question')
self.context['run_time'] = details.get('run_time')
self.context['document'] = details.get('document_list')
self.context['image'] = details.get('image_list')
self.status = details.get('status')
self.err_message = details.get('err_message')
for key, value in workflow_variable.items():