angelesteban00_hg / app_old.py
angelesteban00's picture
.
ef24768
raw
history blame
149 Bytes
import gradio as gr
def greet(name):
return "Hola " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()