From 2df4445aa764a9457435806f063eeefd3bd11bb3 Mon Sep 17 00:00:00 2001 From: Stream Date: Wed, 28 Jan 2026 21:38:43 +0800 Subject: [PATCH] fix: structured output should be non-streaming --- api/core/workflow/nodes/llm/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/workflow/nodes/llm/node.py b/api/core/workflow/nodes/llm/node.py index 67a1aea6ee..c4a9229c47 100644 --- a/api/core/workflow/nodes/llm/node.py +++ b/api/core/workflow/nodes/llm/node.py @@ -522,7 +522,7 @@ class LLMNode(Node[LLMNodeData]): json_schema=output_schema, model_parameters=node_data_model.completion_params, stop=list(stop or []), - stream=True, + stream=False, user=user_id, tenant_id=tenant_id, )