Skip to content

Commit

Permalink
feat: 프롬프트 메시지 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
osoohynn committed Dec 2, 2024
1 parent 0f2c8a6 commit 3e38b21
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ public MessageDto translateMessage(TranslateRequest request) {
personalPromptList.clearChatHistory();

String userMessage = request.message();
String processedMessage = "'" + userMessage + "'를 번역해줘, 절대로 다른 말 하지말고 번역 결과만 말해줘. 한국어면 영어로, 영어면 한국어로 해 따옴표도 붙히지 말아줘";
String processedMessage = "'" + userMessage + "'를 번역해줘" +
"1. 절대로 다른 말 하지말고 번역기처럼 번역 결과만 말해줘. " +
"2. 한국어면 영어로, 영어면 한국어로 해 " +
"3. 따옴표도 붙히지 말아줘" +
"4. 만약 한국어나 영어 외에 다른 언어가 들어오면 한국어로 번역해줘";

personalPromptList.addMessage("user", processedMessage);

Expand All @@ -52,7 +56,9 @@ public MessageDto refreshResult(UUID userId) {
throw new RuntimeException("입력된 데이터가 없습니다");
}

personalPromptList.addMessage("user", "좀만 다르게 번역해줘, 역시나 절대로 다른 말 빼고 번역 결과만. 한국어면 영어로, 영어면 한국어로 해 따옴표도 붙히지 말아줘");
personalPromptList.addMessage("user", "좀만 다르게 번역해줘, " +
"1. 역시나 절대로 다른 말 빼고 번역 결과만. " +
"2. 따옴표도 붙히지 말아줘");

return getAnswer(personalPromptList);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.project.oof.user.service;
package com.project.oof.gpt.service;

import com.project.oof.gpt.service.ChatHistoryService;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;

Expand All @@ -19,7 +18,11 @@ public ChatHistoryService getChatHistory(UUID userId) {
}

public void addUser(UUID userId) {
// removeUser();
userChatHistories.putIfAbsent(userId, new ChatHistoryService());
}

public void removeUser() {
userChatHistories.clear();
}
}

0 comments on commit 3e38b21

Please sign in to comment.