Fri Jun 9 07:35:00 UTC 2023 inscode

上级 50204e8f
...@@ -99,16 +99,17 @@ export default { ...@@ -99,16 +99,17 @@ export default {
const finish = finish_reason === 'stop' || finish_reason === 'length'; const finish = finish_reason === 'stop' || finish_reason === 'length';
const content = data.choices[0].delta.content; const content = data.choices[0].delta.content;
setTimeout(()=>{
if (finish) { if (finish) {
this.loading = false; this.loading = false;
} else if (content) { } else if (content) {
const text = content; const text = content;
for(let i=0;i<text.length;i++){ dialog.text += text
setTimeout
dialog.text += text[i]; console.log(dialog.text)
}
} }
},700)
}, },
onerror: (err) => { onerror: (err) => {
console.log("error", err); console.log("error", err);
...@@ -118,7 +119,10 @@ export default { ...@@ -118,7 +119,10 @@ export default {
handleNewChat() { handleNewChat() {
this.dialogs = []; this.dialogs = [];
}, },
typing handleTyping(dialog,text){
}
} }
} }
</script> </script>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册