minimal / app.py
jph00's picture
app.py
a61f902
raw
history blame
108 Bytes
import gradio as gr
def greet(): return "Hello"
gr.Interface(fn=greet, inputs=[], outputs="text").launch()