feat: implement RAG-based chatbot service with daily usage rate limiting and background index worker
All checks were successful
Build and Release / release (push) Successful in 1m27s

This commit is contained in:
2026-05-06 10:02:00 +07:00
parent 76c5f55cdd
commit a61cf085ce
13 changed files with 442 additions and 38 deletions

8
pkg/constants/usage.go Normal file
View File

@@ -0,0 +1,8 @@
package constants
import "time"
const (
MaxDailyAIUsage = 10
UsageExpiration = 24 * time.Hour
)