Update app.py
Browse files
app.py
CHANGED
@@ -85,4 +85,10 @@ interface = gr.Interface(
|
|
85 |
description="Upload an image to detect signatures"
|
86 |
)
|
87 |
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
description="Upload an image to detect signatures"
|
86 |
)
|
87 |
|
88 |
+
# Launch with specific configs for API access
|
89 |
+
interface.launch(
|
90 |
+
share=True,
|
91 |
+
server_name="0.0.0.0",
|
92 |
+
enable_queue=True,
|
93 |
+
show_api=True
|
94 |
+
)
|