ai-canvas / app.py
parrotmaker's picture
Update app.py
28c55a1 verified
raw
history blame
264 Bytes
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
)