提交 c86dd4dd 作者: TOMCAT 007

vue页面开发完成

上级 fc9d9f3c
...@@ -63,7 +63,7 @@ async function onConversation() { ...@@ -63,7 +63,7 @@ async function onConversation() {
const message = prompt.value const message = prompt.value
if (usingContext.value) { if (usingContext.value) {
for (let i = 0; i < dataSources.value.length; i = i + 2) for (let i = 0; i < dataSources.value.length; i = i + 2)
history.value.push([dataSources.value[i].text, dataSources.value[i + 1].text]) history.value.push([dataSources.value[i].text, dataSources.value[i + 1].text.split('\n\n数据来源:\n\n>')[0]])
} }
else { history.value.length = 0 } else { history.value.length = 0 }
...@@ -124,7 +124,7 @@ async function onConversation() { ...@@ -124,7 +124,7 @@ async function onConversation() {
question: message, question: message,
history: history.value, history: history.value,
}) })
const result = active.value ? res.data.response.text : res.data.response const result = active.value ? `${res.data.response}\n\n数据来源:\n\n>${res.data.source_documents.join('>')}` : res.data.response
updateChat( updateChat(
+uuid, +uuid,
dataSources.value.length - 1, dataSources.value.length - 1,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论