mirror of https://github.com/langgenius/dify.git
fix: structured output should be non-streaming
This commit is contained in:
parent
d63a012680
commit
2df4445aa7
|
|
@ -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,
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue