Skip to content

Commit

Permalink
Adjusted limits
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLazarescu committed Oct 17, 2023
1 parent e548277 commit 72d3a21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Application/Services/AIService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class AiService : IAiService
string mode)
{
var user = await _userRepository.GetAsync(email, trackChanges: true);
if(user.AiExplanationRequestsMadeToday >= 30)
if(user.AiExplanationRequestsMadeToday >= 10)
{
const string message = "Ai explanation limit reached";
_logger.LogWarning(message);
Expand Down

0 comments on commit 72d3a21

Please sign in to comment.