Skip to content

Commit d069903

Browse files
committed
fix: increase rate limit to 10 per hour
1 parent f5b7800 commit d069903

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/ai/entitlements.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ type Entitlements = {
66

77
export const entitlementsByUserType: Record<UserType, Entitlements> = {
88
guest: {
9-
maxMessagesPerHour: 5,
9+
maxMessagesPerHour: 10,
1010
},
1111
regular: {
12-
maxMessagesPerHour: 5,
12+
maxMessagesPerHour: 10,
1313
},
1414
};

0 commit comments

Comments
 (0)