Skip to content

Commit bed2877

Browse files
author
Shrijeeth-Suresh
committed
chore: increase rate limit from 5 to 20 requests per minute
1 parent e8e6dcf commit bed2877

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

backend/middleware/rate_limit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from starlette.middleware.base import BaseHTTPMiddleware
66
from starlette.responses import Response
77

8-
RATE_LIMIT = 5 # max requests
8+
RATE_LIMIT = 20 # max requests
99
RATE_PERIOD = 60 # per 60 seconds
1010

1111

backend/requirements.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ uvicorn==0.34.1
77
python-dotenv==1.1.0
88
ruff==0.11.6
99
qdrant-client==1.13.3
10-
litellm==1.70.2
10+
litellm==1.68.0
1111
mysql-connector-python==9.3.0
1212
python-multipart==0.0.20
1313
python-jose==3.4.0
@@ -18,3 +18,8 @@ asyncpg==0.30.0
1818
greenlet==3.2.0
1919
redis==5.2.1
2020
psycopg2==2.9.10
21+
crewai-tools==0.46.0
22+
matplotlib==3.10.3
23+
seaborn==0.13.2
24+
pandas==2.2.3
25+
numpy==2.2.4

0 commit comments

Comments
 (0)