pictero / app.py
n42's picture
testing git process
d1eb40d
raw
history blame
156 Bytes
import gradio as gr
def greet(name):
return "Hello, are you" + name + "?"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()