File size: 265 Bytes
5627e5f
 
f6923f8
 
 
 
 
 
 
 
28c55a1
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

# Minimal dummy interface with redirect
gr.Interface(
    fn=lambda x: "",
    inputs=gr.Textbox(visible=False),
    outputs=gr.Textbox(visible=False),
    live=False
).launch(
    inline=False,
    server_name="0.0.0.0",
    server_port=7860
)