anse-app / chatgpt-demo

Minimal web UI for ChatGPT.
https://chatgpt.ddiu.me
MIT License
8.01k stars 3.81k forks source link

请问部署到netlify是怎么支持流式的 #404

Closed zzy-life closed 1 year ago

zzy-life commented 1 year ago

我谷歌搜索了一下,都是说不支持SSE

yzh990918 commented 1 year ago

refer: https://docs.netlify.com/edge-functions/api/#web-apis

zzy-life commented 1 year ago

我试了一下这个https://github.com/ascorbic/sse-demo/blob/main/netlify/edge-functions/sse.ts 然后一直在循环 这种方法有用吗

ddiu8081 commented 1 year ago

Netlify Edge Function supports stream output. Just return a ReadableStream via Response.

我试了一下这个https://github.com/ascorbic/sse-demo/blob/main/netlify/edge-functions/sse.ts 然后一直在循环 这种方法有用吗

The infinite loop in this code looks fine, because it is indeed written that way.