Spaces:
Running
Running
ai: Use server-side queuing implementation.
Browse filesAs I have already implemented rate limiting on the private server, it is no longer necessary to set this.
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=
|
|
|
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)
|