桌面端 AI 产品中高频出现的交互组件——每一张卡片都是可以动的。
async function streamChat(prompt: string) { const res = await fetch('/api/chat', { method: 'POST', body: JSON.stringify({ prompt }), }); // 逐行读取 SSE 流 for await (const chunk of res.body) { render(chunk); } }