在使用 ChatGPT 时一直都好奇它生成答案的动画效果是怎么做的,今天我们就简单的来模拟下。
先上效果:
我们先准备一下接口,代码如下:
const express = require('express')
const app = express()
const sleep = (ms) =>
new Promise((resolve, reject) => {
setTimeout(resolve, ms)
})
app.use(express.static('.'))
const answer = '一群嗜血的蚂蚁被腐肉所吸引,我面无表情看孤独的风景...'
app.get('/ai', async (req, res, next) => {
for (let i = 0; i < answer.length; i++) {
res.write(answer[i].toString())
await sleep(200)
}
res.end()
})
app.listen(8000)
可以看到,/ai
接口数据会以分块传输的方式返回。
我们在前端试着请求一下:
fetch('/ai')
.then((rsp) => rsp.text())
.then(console.log)
然而,测试发现要等到数据全部传输完才会打印。怎么才能提前读取已经传输好的数据块呢?答案就是 ReadableStream。上面代码中,rsp
上的 body
属性其实就是 ReadableStream
对象,可以调用它的 getReader()
方法返回一个 reader
来读取数据,所以我们稍加改造一下就可以了:
fetch('/ai')
.then((rsp) => rsp.body.getReader())
.then((reader) => {
function read() {
reader.read().then(({done, value}) => {
// If there is no more data to read
if (done) {
console.log('done', done)
return
}
// decode Uint8Array to string
console.log(new TextDecoder().decode(value))
read()
})
}
read()
})
好了,关键的数据读取部分搞定了,前端效果部分就不详细介绍了,完整代码如下:
<h2>Fake Chat GPT</h2>
<input type="text" id="input" />
<button id="btn">Submit</button>
<ul id="messages"></ul>
<script>
const $submit = document.querySelector('#btn')
const $messages = document.querySelector('#messages')
const $input = document.querySelector('#input')
function addQuestion(text) {
const $li = document.createElement('li')
const $span = document.createElement('span')
$span.innerText = text
$li.classList.add('question')
$li.append($span)
$messages.append($li)
}
function addAnswer() {
const $li = document.createElement('li')
const $span = document.createElement('span')
$li.classList.add('answer')
$li.append($span)
$messages.append($li)
return $span
}
$submit.addEventListener('click', () => {
const question = $input.value
addQuestion(question)
fetch('/ai')
.then((rsp) => rsp.body.getReader())
.then((reader) => {
const $span = addAnswer()
function read() {
reader.read().then(({done, value}) => {
// If there is no more data to read
if (done) {
console.log('done', done)
return
}
$span.appendChild(
document.createTextNode(new TextDecoder().decode(value))
)
read()
})
}
read()
})
})
</script>
原文始发于微信公众号(前端游):模拟 ChatGPT 生成答案的动画效果
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/282112.html