Skip to content

Commit

Permalink
refactor: 질문에 답하지 못한 로그
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoya324 committed Dec 5, 2024
1 parent 684d506 commit 2d36aa2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public QuestionResponse invoke(QuestionRequest request, String contentToken) {
.block(Duration.of(20L, ChronoUnit.SECONDS));

if (isInvalidAnswer(llmAnswerResponse)) {
log.info("!!==질문 {}에 대해 답변하지 못했습니다.==!!", request.content());
log.info("!!==질문: \"{}\"에 대해 답변하지 못했습니다.==!!", request.content());
return QuestionResponse.valueOfNotFoundRAG(request.content(),
generateGuideAnswer(llmAnswerResponse.references()));
}
Expand Down

0 comments on commit 2d36aa2

Please sign in to comment.