Files
History_Api/pkg/constants/usage.go
AzenKain a61cf085ce
All checks were successful
Build and Release / release (push) Successful in 1m27s
feat: implement RAG-based chatbot service with daily usage rate limiting and background index worker
2026-05-06 10:02:00 +07:00

9 lines
100 B
Go

package constants
import "time"
const (
MaxDailyAIUsage = 10
UsageExpiration = 24 * time.Hour
)