Feat(云灵AI):对话接口对接完成

This commit is contained in:
lifizer
2025-04-06 00:05:03 +08:00
parent 30f550ca92
commit 50ff88e7df
9 changed files with 505 additions and 55 deletions
+8
View File
@@ -15,3 +15,11 @@ export function deleteChatItemByConversationId(id) {
export function getChatList(params) {
return request.get('/v1/chat', params, { login: true })
}
export function historyChatMessage(params) {
return request.get('/v1/chat/message', params, { login: true })
}
export function deleteChatListByType(type) {
return request.delete('/v1/chat/type/' + type, {}, { login: true })
}