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