minimal / app.py
sh2020's picture
Add application file 2
41df235
import gradio as gr
def greet(name):
return "Hello hola" + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()