Update app.py
Browse files
app.py
CHANGED
|
@@ -75,5 +75,5 @@ iface = gr.Interface(
|
|
| 75 |
allow_flagging="never" # 👈 This disables flagging entirely
|
| 76 |
)
|
| 77 |
|
| 78 |
-
|
| 79 |
-
iface.launch()
|
|
|
|
| 75 |
allow_flagging="never" # 👈 This disables flagging entirely
|
| 76 |
)
|
| 77 |
|
| 78 |
+
print(">>> App is ready. Launching Gradio...")
|
| 79 |
+
iface.launch(server_name="0.0.0.0", server_port=7860, debug=True)
|