Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
# Dummy interface to keep the Space alive, but not display any UI
|
4 |
+
gr.Interface(fn=lambda: None, inputs=[], outputs=[]).launch(
|
5 |
+
inline=False, # <- This disables the Gradio UI shell
|
6 |
+
server_name="0.0.0.0",
|
7 |
+
server_port=7860
|
8 |
+
)
|