This commit is contained in:
Mohammad Zwaib
2026-07-16 00:34:42 +02:00
parent 7cef62cc48
commit 5d6edef396
4 changed files with 84 additions and 9 deletions
@@ -35,7 +35,7 @@ public class ChatController {
.build();
}
String answer = ragService.answerQuestion(question);
String answer = ragService.answerQuestion(question, request.getHistory());
return AskResponse.builder()
.answer(answer).reply(answer).message(answer)