File size: 194 Bytes
fad20f6
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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()