updated to tranfer public access
Browse files
app.py
CHANGED
|
@@ -87,4 +87,9 @@ iface = gr.Interface(
|
|
| 87 |
)
|
| 88 |
|
| 89 |
if __name__ == "__main__":
|
| 90 |
-
iface.launch(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
)
|
| 88 |
|
| 89 |
if __name__ == "__main__":
|
| 90 |
+
iface.launch(
|
| 91 |
+
server_name="0.0.0.0",
|
| 92 |
+
server_port=7860,
|
| 93 |
+
share=True # Add this line to enable public access
|
| 94 |
+
)
|
| 95 |
+
|