1
19 小时以前 b2deb1cc93b3d2c3fb9dc795e3589e1c62329a8f
rsf-server/src/main/java/com/vincent/rsf/server/ai/service/AiChatService.java
@@ -11,7 +11,7 @@
public interface AiChatService {
    AiChatRuntimeDto getRuntime(String promptCode, Long sessionId, Long userId, Long tenantId);
    AiChatRuntimeDto getRuntime(String promptCode, Long sessionId, Long aiParamId, Long userId, Long tenantId);
    List<AiChatSessionDto> listSessions(String promptCode, String keyword, Long userId, Long tenantId);
@@ -22,4 +22,8 @@
    AiChatSessionDto renameSession(Long sessionId, AiChatSessionRenameRequest request, Long userId, Long tenantId);
    AiChatSessionDto pinSession(Long sessionId, AiChatSessionPinRequest request, Long userId, Long tenantId);
    void clearSessionMemory(Long sessionId, Long userId, Long tenantId);
    void retainLatestRound(Long sessionId, Long userId, Long tenantId);
}