Skip to content

Commit

Permalink
Merge pull request #111 from teknologi-umum/chore/increase-ai-group-r…
Browse files Browse the repository at this point in the history
…ate-limit

chore(ai): increase group rate limit to 4 msgs per 60 minutes
  • Loading branch information
ronnygunawan authored Aug 30, 2024
2 parents 261b315 + 09df954 commit c640674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BotNet.CommandHandlers/AI/RateLimit/AIRateLimiters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

namespace BotNet.CommandHandlers.AI.RateLimit {
internal static class AIRateLimiters {
internal static readonly RateLimiter GROUP_CHAT_RATE_LIMITER = RateLimiter.PerUserPerChat(4, TimeSpan.FromMinutes(15));
internal static readonly RateLimiter GROUP_CHAT_RATE_LIMITER = RateLimiter.PerUserPerChat(4, TimeSpan.FromMinutes(60));
}
}

0 comments on commit c640674

Please sign in to comment.