sujalrajpoot commited on
Commit
b13bba1
·
verified ·
1 Parent(s): 9647fd9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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("1 per minute") # Apply limit only to this function
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