hadadrjt commited on
Commit
3949dad
·
1 Parent(s): 5b754a3

ai: Use server-side queuing implementation.

Browse files

As I have already implemented rate limiting on the private server, it is no longer necessary to set this.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,4 +16,4 @@ if __name__ == "__main__":
16
 
17
  # Call the 'launch' method on the 'app' object to start the user interface.
18
  # This typically opens the UI window or begins the event loop, making the application interactive.
19
- app.queue(default_concurrency_limit=2).launch(share=True, quiet=True, pwa=True)
 
16
 
17
  # Call the 'launch' method on the 'app' object to start the user interface.
18
  # This typically opens the UI window or begins the event loop, making the application interactive.
19
+ app.queue(default_concurrency_limit=None).launch(share=True, quiet=True, pwa=True)