Skip to content

Commit 837af2a

Browse files
committed
Increase freebuff rate limits
1 parent dd4451f commit 837af2a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

web/src/app/api/v1/chat/completions/free-mode-rate-limiter.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ export const FREE_MODE_RATE_LIMITS = {
1616
/** Max requests per 1-second window */
1717
PER_SECOND: 2,
1818
/** Max requests per 1-minute window */
19-
PER_MINUTE: 20,
19+
PER_MINUTE: 25,
2020
/** Max requests per 30-minute window */
21-
PER_30_MINUTES: 200,
21+
PER_30_MINUTES: 250,
2222
/** Max requests per 5-hour window */
23-
PER_5_HOURS: 1_000,
23+
PER_5_HOURS: 2_000,
2424
/** Max requests per 7-day window */
25-
PER_7_DAYS: 10_000,
25+
PER_7_DAYS: 20_000,
2626
} as const
2727

2828
// ---------------------------------------------------------------------------

0 commit comments

Comments
 (0)