fix: structured output should be non-streaming

This commit is contained in:
Stream
2026-01-28 21:38:43 +08:00
parent d63a012680
commit 2df4445aa7

View File

@ -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,
)