为什么在Google Chrome Devtools中找不到chatgpt事件流数据

jckbn6z7  于 2023-09-28  发布在  Go
关注(0)|答案(1)|浏览(550)

我很好奇chatgpt最近是如何向客户端推送消息的。我已经看过一些文章介绍了ChatGPT使用sse将消息推送到客户端,chatgpt是否使用服务器发送的事件推送应答器?如果是这样,为什么在谷歌Chrome中的对话请求中没有显示事件流数据?

顺便问一下,服务器发送的事件只支持get请求,为什么chatgpt发送post请求?

l0oc07j2

l0oc07j21#

EventStreams没有出现在Chrome DevTools中的原因是因为EventSource是polyfilled的。
你可以在这里找到关于这个问题的讨论:Event does not show up in the Chrome EventStream subtab inside the Network tab when viewing the eventstream connection · Issue #79 · Yaffle/EventSource

相关问题