image-retriever / app.py
nroggendorff's picture
Create app.py
ca1f921 verified
raw
history blame
116 Bytes
import gradio as gr
def fun(n="Born to be sauce"):
return n
gr.Interface(fn=fun, inputs=None, outputs=gr.Text)