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
@@ -3,6 +3,6 @@ package constants
import "time"
const (
MaxDailyAIUsage = 1000
MaxDailyAIUsage = 50
UsageExpiration = 24 * time.Hour
)