【新增】AI:聊天对话的删除功能

This commit is contained in:
YunaiV 2024-05-15 20:32:58 +08:00
parent 3d83f4928a
commit 83b9332125
2 changed files with 26 additions and 31 deletions

View File

@ -13,6 +13,7 @@ export interface ChatConversationVO {
maxTokens: number // 单条回复的最大 Token 数量 maxTokens: number // 单条回复的最大 Token 数量
maxContexts: number // 上下文的最大 Message 数量 maxContexts: number // 上下文的最大 Message 数量
// 额外字段 // 额外字段
modelName?: string // 模型名字
roleAvatar?: string // 角色头像 roleAvatar?: string // 角色头像
modelMaxTokens?: string // 模型的单条回复的最大 Token 数量 modelMaxTokens?: string // 模型的单条回复的最大 Token 数量
modelMaxContexts?: string // 模型的上下文的最大 Message 数量 modelMaxContexts?: string // 模型的上下文的最大 Message 数量
@ -24,14 +25,20 @@ export const ChatConversationApi = {
getChatConversationMy: async (id: number) => { getChatConversationMy: async (id: number) => {
return await request.get({ url: `/ai/chat/conversation/get-my?id=${id}` }) return await request.get({ url: `/ai/chat/conversation/get-my?id=${id}` })
}, },
// 新增【我的】聊天会话
createChatConversationMy: async (data?: ChatConversationVO) => {
return await request.post({ url: `/ai/chat/conversation/create-my`, data })
},
// 更新【我的】聊天会话 // 更新【我的】聊天会话
updateChatConversationMy: async (data: ChatConversationVO) => { updateChatConversationMy: async (data: ChatConversationVO) => {
return await request.put({ url: `/ai/chat/conversation/update-my`, data }) return await request.put({ url: `/ai/chat/conversation/update-my`, data })
}, },
// 新增【我的】聊天会话 // 删除【我的】聊天会话
createChatConversationMy: async (data?: ChatConversationVO) => { deleteChatConversationMy: async (id: number) => {
return await request.post({ url: `/ai/chat/conversation/create-my`, data }) return await request.delete({ url: `/ai/chat/conversation/delete-my?id=${id}` })
}, },
// 获得【我的】聊天会话列表 // 获得【我的】聊天会话列表

View File

@ -22,7 +22,7 @@
</el-input> </el-input>
<!-- 左中间对话列表 --> <!-- 左中间对话列表 -->
<div class="conversation-list"> <div class="conversation-list">
<!-- TODO @芋艿置顶聊天记录一星期钱30天前前端对数据重新做一下分组或者后端接口改一下 --> <!-- TODO @fain置顶聊天记录一星期钱30天前前端对数据重新做一下分组或者后端接口改一下 -->
<div> <div>
<el-text class="mx-1" size="small" tag="b">置顶</el-text> <el-text class="mx-1" size="small" tag="b">置顶</el-text>
</div> </div>
@ -35,11 +35,12 @@
<img class="avatar" :src="conversation.roleAvatar" /> <img class="avatar" :src="conversation.roleAvatar" />
<span class="title">{{ conversation.title }}</span> <span class="title">{{ conversation.title }}</span>
</div> </div>
<!-- TODO @fan缺一个置顶按钮效果改成 hover 上去展示 -->
<div class="button-wrapper"> <div class="button-wrapper">
<el-icon title="编辑" @click="updateConversationTitle(conversation)"> <el-icon title="编辑" @click="updateConversationTitle(conversation)">
<Icon icon="ep:edit" /> <Icon icon="ep:edit" />
</el-icon> </el-icon>
<el-icon title="删除会话" @click="deleteConversationTitle(conversation)"> <el-icon title="删除会话" @click="deleteChatConversation(conversation)">
<Icon icon="ep:delete" /> <Icon icon="ep:delete" />
</el-icon> </el-icon>
</div> </div>
@ -69,7 +70,7 @@
<div> <div>
<!-- TODO @fan样式改下这里我已经改成点击后弹出了 --> <!-- TODO @fan样式改下这里我已经改成点击后弹出了 -->
<el-button type="primary" @click="openChatConversationUpdateForm"> <el-button type="primary" @click="openChatConversationUpdateForm">
<span v-html="useModal?.name"></span> <span v-html="useConversation?.modelName"></span>
<Icon icon="ep:setting" style="margin-left: 10px" /> <Icon icon="ep:setting" style="margin-left: 10px" />
</el-button> </el-button>
<el-button> <el-button>
@ -190,7 +191,6 @@
import { ChatMessageApi, ChatMessageSendVO, ChatMessageVO } from '@/api/ai/chat/message' import { ChatMessageApi, ChatMessageSendVO, ChatMessageVO } from '@/api/ai/chat/message'
import { ChatConversationApi, ChatConversationVO } from '@/api/ai/chat/conversation' import { ChatConversationApi, ChatConversationVO } from '@/api/ai/chat/conversation'
import ChatConversationUpdateForm from './components/ChatConversationUpdateForm.vue' import ChatConversationUpdateForm from './components/ChatConversationUpdateForm.vue'
import { ChatModelApi, ChatModelVO } from '@/api/ai/model/chatModel'
import { formatDate } from '@/utils/formatTime' import { formatDate } from '@/utils/formatTime'
import { useClipboard } from '@vueuse/core' import { useClipboard } from '@vueuse/core'
// markdown // markdown
@ -199,7 +199,6 @@ import { marked } from 'marked'
import 'highlight.js/styles/vs2015.min.css' import 'highlight.js/styles/vs2015.min.css'
import hljs from 'highlight.js' import hljs from 'highlight.js'
const { t } = useI18n() //
const message = useMessage() // const message = useMessage() //
// //
@ -221,8 +220,7 @@ const { copy } = useClipboard()
const searchName = ref('') // const searchName = ref('') //
const inputTimeout = ref<any>() // const inputTimeout = ref<any>() //
const conversationId = ref(0) // const conversationId = ref(0) //
const conversationInProgress = ref<Boolean>() // const conversationInProgress = ref(false) //
conversationInProgress.value = false
const conversationInAbortController = ref<any>() // abort ( stream ) const conversationInAbortController = ref<any>() // abort ( stream )
const prompt = ref<string>() // prompt const prompt = ref<string>() // prompt
@ -235,9 +233,7 @@ const isComposing = ref(false) // 判断用户是否在输入
/** chat message 列表 */ /** chat message 列表 */
// defineOptions({ name: 'chatMessageList' }) // defineOptions({ name: 'chatMessageList' })
const list = ref<ChatMessageVO[]>([]) // const list = ref<ChatMessageVO[]>([]) //
const useModal = ref<ChatModelVO>() // 使modal
const useConversation = ref<ChatConversationVO>() // 使 Conversation const useConversation = ref<ChatConversationVO>() // 使 Conversation
const modalList = ref<ChatModelVO[]>([]) //
/** 新建对话 */ /** 新建对话 */
const createConversation = async () => { const createConversation = async () => {
@ -274,13 +270,20 @@ const updateConversationTitle = async (conversation: ChatConversationVO) => {
} }
/** 删除聊天会话 */ /** 删除聊天会话 */
const deleteConversationTitle = async (conversation: ChatConversationVO) => { const deleteChatConversation = async (conversation: ChatConversationVO) => {
console.log(conversation) try {
// TODO //
await message.delConfirm(`是否确认删除会话 - ${conversation.title}?`)
//
await ChatConversationApi.deleteChatConversationMy(conversation.id)
message.success('会话已删除')
//
await getChatConversationList()
} catch {}
} }
const searchConversation = () => { const searchConversation = () => {
// TODO // TODO fan
} }
/** send */ /** send */
@ -456,11 +459,6 @@ const openChatConversationUpdateForm = async () => {
chatConversationUpdateFormRef.value.open(conversationId.value) chatConversationUpdateFormRef.value.open(conversationId.value)
} }
const getModalList = async () => {
// as unknown as ChatModelVO
modalList.value = (await ChatModelApi.getChatModelSimpleList(0)) as unknown as ChatModelVO[]
}
// //
const onCompositionstart = () => { const onCompositionstart = () => {
console.log('onCompositionstart。。。.') console.log('onCompositionstart。。。.')
@ -500,14 +498,6 @@ const getConversation = async (conversationId: string) => {
// //
useConversation.value = await ChatConversationApi.getChatConversationMy(conversationId) useConversation.value = await ChatConversationApi.getChatConversationMy(conversationId)
console.log('useConversation.value', useConversation.value) console.log('useConversation.value', useConversation.value)
// modal
if (useConversation.value) {
modalList.value.forEach((item) => {
if (useConversation.value?.modelId === item.id) {
useModal.value = item
}
})
}
} }
/** 获得聊天会话列表 */ /** 获得聊天会话列表 */
@ -529,8 +519,6 @@ const getChatConversationList = async () => {
onMounted(async () => { onMounted(async () => {
// //
await getChatConversationList() await getChatConversationList()
//
getModalList()
// //
getConversation(conversationId.value) getConversation(conversationId.value)
// //