This commit is contained in:
parent
bcb694fe69
commit
8ab770305c
|
@ -124,7 +124,7 @@ async function loadTTS(){
|
|||
if (ttsList.length == 0)
|
||||
playAudio()
|
||||
}
|
||||
ttsList = tts;
|
||||
ttsList = JSON.parse(JSON.stringify(tts));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -197,6 +197,17 @@ async function onConversation() {
|
|||
})
|
||||
scrollToBottom()
|
||||
|
||||
let infoList = JSON.parse(JSON.stringify(dataSources.value));
|
||||
infoList = infoList.map((item:any, index:any)=>{
|
||||
return {
|
||||
role: index%2==0?'user':'assistant',
|
||||
content: item.text
|
||||
}
|
||||
})
|
||||
|
||||
console.log(dataSources.value);
|
||||
|
||||
|
||||
try {
|
||||
let lastText = ''
|
||||
const tts:any = [];
|
||||
|
@ -206,12 +217,14 @@ async function onConversation() {
|
|||
socket.send(JSON.stringify({
|
||||
tts: 1,
|
||||
data: [
|
||||
...infoList,
|
||||
{
|
||||
role: 'user',
|
||||
content: message,
|
||||
},
|
||||
],
|
||||
}))
|
||||
|
||||
nowStatus.value = 'loding'
|
||||
|
||||
// 监听WebSocket接收消息事件
|
||||
|
|
Loading…
Reference in New Issue