【优化】修改对话Id类型

pull/449/MERGE
cherishsince 2024-05-16 23:21:02 +08:00
parent dbca077f31
commit 934d5e7ca8
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export interface ChatMessageSendVO {
// AI chat 聊天
export const ChatMessageApi = {
// 消息列表
messageList: async (conversationId: number | null) => {
messageList: async (conversationId: string | null) => {
return await request.get({
url: `/ai/chat/message/list-by-conversation-id?conversationId=${conversationId}`
})