From b565b6c99bc8c6a053f718d1e7c65046db147835 Mon Sep 17 00:00:00 2001 From: Ethan-Zhang Date: Mon, 28 Jul 2025 08:52:56 +0800 Subject: [PATCH] =?UTF-8?q?Fix:=20=E4=BF=AE=E5=A4=8DEmpty=E8=8A=82?= =?UTF-8?q?=E7=82=B9input=E5=B5=8C=E5=A5=97=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/services/flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/services/flow.py b/apps/services/flow.py index 74639d1ad..74268ab7c 100644 --- a/apps/services/flow.py +++ b/apps/services/flow.py @@ -262,7 +262,7 @@ class FlowManager: parameters = node_config.params # 直接使用保存的完整params else: # 其他节点:使用原有逻辑 - input_parameters = node_config.params + input_parameters = node_config.params.get("input_parameters") if node_config.node not in ("Empty"): _, output_parameters = await NodeManager.get_node_params(node_config.node) else: -- Gitee