awe / app.py
ckashby's picture
init
80cfb79
raw
history blame contribute delete
148 Bytes
import gradio as gr
def greet(name):
return "Hola " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()