fix: missing process data in parameter extractor (#5755)

This commit is contained in:
Yeuoly 2024-06-29 23:29:43 +08:00 committed by GitHub
parent fc0f75d13b
commit f101fcd0e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -131,7 +131,7 @@ class ParameterExtractorNode(LLMNode):
return NodeRunResult(
status=WorkflowNodeExecutionStatus.FAILED,
inputs=inputs,
process_data={},
process_data=process_data,
outputs={
'__is_success': 0,
'__reason': str(e)