Demo_Binn / app.py
Hugomartinezg's picture
Subir demo primer ejercicio
fad20f6
raw
history blame contribute delete
194 Bytes
import gradio as gr
def saluda(nombre):
return "hola " + nombre
demo = gr.Interface(fn=saluda, inputs=gr.Textbox(lines=10, placeholder="Dime tu nombre porfa"), outputs="text")
demo.launch()