feat: implement RAG-based chatbot service with usage limits and history persistence
Build and Release / release (push) Successful in 1m23s

This commit is contained in:
2026-06-05 21:20:23 +07:00
parent 32ade66c6c
commit f55bc6c0e6
3 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ package request
type ChatbotDto struct {
ProjectID *string `json:"project_id"`
Question string `json:"question" validate:"required"`
Question string `json:"question" validate:"required,max=500"`
}
type GetChatbotHistoryDto struct {