Spaces:
Sleeping
Sleeping
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 | |
) |