Update app.py
Browse files
app.py
CHANGED
|
@@ -77,6 +77,7 @@ iface = gr.Interface(
|
|
| 77 |
title="Website Categorization",
|
| 78 |
description="Categorize a website into one of the 3 categories: OTHER, NEWS/BLOG, or E-commerce."
|
| 79 |
)
|
|
|
|
| 80 |
|
| 81 |
# Launch the interface
|
| 82 |
iface.launch()
|
|
|
|
| 77 |
title="Website Categorization",
|
| 78 |
description="Categorize a website into one of the 3 categories: OTHER, NEWS/BLOG, or E-commerce."
|
| 79 |
)
|
| 80 |
+
iface.queue() # <-- Sets up a queue with default parameters
|
| 81 |
|
| 82 |
# Launch the interface
|
| 83 |
iface.launch()
|