Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion domain/src/main/kotlin/org/chewing/v1/facade/AiFacade.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class AiFacade(
val friendMessages = chatLogService.getChatLogsBySender(sourceChatRoomId, friendUserId)

// 3. 사용자 입력 메시지를 AI 채팅방에 저장
val aiChatRoom = aiChatRoomService.getAiChatRoom(sourceChatRoomId, requestingUserId)
val aiChatRoom = aiChatRoomService.getAiChatRoom(targetAiChatRoomId, requestingUserId)
val userMessageSeq = aiChatRoomService.increaseDirectChatRoomSequence(aiChatRoom.chatRoomId)
val userMessage = chatLogService.aiMessage(aiChatRoom.chatRoomId, requestingUserId, userMessageSeq, userPrompt, ChatRoomType.AI, SenderType.USER)

Expand Down