File size: 264 Bytes
5627e5f
 
28c55a1
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

# Dummy interface to keep the Space alive, but not display any UI
gr.Interface(fn=lambda: None, inputs=[], outputs=[]).launch(
    inline=False,           # <- This disables the Gradio UI shell
    server_name="0.0.0.0",
    server_port=7860
)