Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -89,7 +89,7 @@ def ratelimit_exceeded(e):
|
|
89 |
|
90 |
# Chat Endpoint
|
91 |
@app.route("/v1/chat/completions", methods=["POST"])
|
92 |
-
@limiter.limit("
|
93 |
def chat():
|
94 |
global request_count
|
95 |
data = request.json
|
|
|
89 |
|
90 |
# Chat Endpoint
|
91 |
@app.route("/v1/chat/completions", methods=["POST"])
|
92 |
+
@limiter.limit("5 per minute") # Apply limit only to this function
|
93 |
def chat():
|
94 |
global request_count
|
95 |
data = request.json
|