Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -44,4 +44,8 @@ interface = gr.Interface(
|
|
44 |
)
|
45 |
|
46 |
# Add share=True to create public URL
|
47 |
-
interface.launch(
|
|
|
|
|
|
|
|
|
|
44 |
)
|
45 |
|
46 |
# Add share=True to create public URL
|
47 |
+
interface.launch(
|
48 |
+
share=True, # This creates a public URL
|
49 |
+
server_name="0.0.0.0",
|
50 |
+
server_port=7860
|
51 |
+
)
|