async fetch(messages: GptMsgs) {
return await fetch('https://ai.com/completions', {
method: 'POST',
body: JSON.stringify({
model: 'gpt-3.5-turbo',
messages,
stream: true
}),
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${this.key}`
}
})
}
前端页面直接调gpt的接口,stream方式,上面是ok的,但是如果需要后端转一手,要怎么实现呢?
前端stream方式到自己的后端接口,自己的后端接口再stream到gpt的接口,再把响应转到前端?
怪怪的