demo / app.py
mayora182's picture
Primero commit
a645194
Raw
History Blame Contribute Delete
144 Bytes
import gradio as gr
def saluda(nombre):
return "hola " + nombre
demo = gr.Interface(fn=saluda, inputs="text", outputs="text")
demo.launch()