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
No known key found for this signature in database
GPG Key ID: 0D403F5A24E1C78B
1 changed files with 1 additions and 1 deletions

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