Skip to content

Commit 278a51e

Browse files
committed
Loosen freemode rate limits slightly
1 parent 76e3ba6 commit 278a51e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
export const FREE_MODE_RATE_LIMITS = {
1616
/** Max requests per 1-second window */
17-
PER_SECOND: 1,
17+
PER_SECOND: 2,
1818
/** Max requests per 1-minute window */
19-
PER_MINUTE: 15,
19+
PER_MINUTE: 20,
2020
/** Max requests per 30-minute window */
2121
PER_30_MINUTES: 200,
2222
/** Max requests per 5-hour window */

0 commit comments

Comments
 (0)