first commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import createAxios from '@/utils/request';
|
||||
import type {BubbleItemType, ConversationItemType} from "@ant-design/x";
|
||||
|
||||
/** 获取会话列表 */
|
||||
export async function getConversations() {
|
||||
return createAxios<ConversationItemType[]>({
|
||||
url: '/ai/chat/conversations',
|
||||
method: 'get',
|
||||
});
|
||||
}
|
||||
|
||||
/** 获取会话消息 */
|
||||
export async function getMessages(conversationId: string) {
|
||||
return createAxios<BubbleItemType[]>({
|
||||
url: `/ai/chat/messages/${conversationId}`,
|
||||
method: 'get',
|
||||
});
|
||||
}
|
||||
|
||||
/** 删除会话 */
|
||||
export async function deleteConversation(conversationId: string) {
|
||||
return createAxios({
|
||||
url: `/ai/chat/conversations/${conversationId}`,
|
||||
method: 'delete',
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user