Replies: 2 comments
-
在版本 0.6.14 中,输出模式从流式输出变成了一次性输出。要将其改回流式输出模式,您需要在请求体中设置 以下是使用 cURL 命令的示例: curl -X POST '${props.appDetail.api_base_url}/chat-messages' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: application/json' \
--data-raw '{
"inputs": {},
"query": "eh",
"response_mode": "streaming",
"conversation_id": "1c7e55fb-1ba2-4e10-81b5-30addcea2276",
"user": "abc-123"
}' 这样就可以将响应模式设置回流式输出。流式输出模式基于服务器发送事件(SSE),提供类似打字机的输出效果,推荐用于更好的实时交互体验。 根据 Dify 文档,
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
0.6.13时ai对话输出的模式是流式输出,一个个字打印出来的,升级到0.6.14后突然就变成一次性输出了。这是为什么?如何修改呢
Beta Was this translation helpful? Give feedback.
All reactions