@@ -13,6 +13,6 @@ import { CreateDialogue, sendChatMessageStream } from '@/api/questions.js'
const qaConfig = Object.freeze({
roleId: 263,
enableFileUpload: false,
- suggestions: ['开始陪练', '你都知道什么?', '我需要知识点....']
+ suggestions: []
})
</script>
@@ -1,5 +1,5 @@
<template>
- <AiQAChat
+ <AiQAChatNew
:config="qaConfig"
:create-dialogue-api="createQsAiDialogue"
:send-chat-stream-api="sendQsAiChatMessageStream"
@@ -7,7 +7,7 @@
</template>
<script setup>
-import AiQAChat from './components/AiQAChat.vue'
+import AiQAChatNew from './components/AiQAChatNew.vue'
import { createQsAiDialogue, sendQsAiChatMessageStream } from '@/api/qsAiQuestions.js'