astro-blendDEV / app.py
Moibe's picture
Update app.py
1f5f680
raw
history blame
No virus
133 Bytes
import gradio as gr
def greet(name):
return "OK"
iface = gr.Interface(fn=greet, inputs="video", outputs="video")
iface.launch()