TASK:LLM;

This commit is contained in:
shahaibo
2025-05-19 10:00:19 +08:00
parent 59ffa38ff7
commit 6aa1a3d167
5 changed files with 39 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
package com.ai.da.service;
import com.ai.da.common.response.PageBaseResponse;
import com.ai.da.common.response.Response;
import com.ai.da.mapper.primary.entity.Account;
import com.ai.da.mapper.primary.entity.AccountExtend;
import com.ai.da.mapper.primary.entity.ChatMessage;
@@ -36,5 +37,5 @@ public interface LLMService {
List<String> uploadFile(MultipartFile file);
List<ChatMessage> getChatHistory(Long projectId);
PageBaseResponse<ChatMessage> getChatHistory(ChatHistoryDTO chatHistoryDTO);
}