Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
#
|
4 |
-
gr.Interface(
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
6 |
server_name="0.0.0.0",
|
7 |
server_port=7860
|
8 |
)
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
# Minimal dummy interface with redirect
|
4 |
+
gr.Interface(
|
5 |
+
fn=lambda x: "",
|
6 |
+
inputs=gr.Textbox(visible=False),
|
7 |
+
outputs=gr.Textbox(visible=False),
|
8 |
+
live=False
|
9 |
+
).launch(
|
10 |
+
inline=False,
|
11 |
server_name="0.0.0.0",
|
12 |
server_port=7860
|
13 |
)
|