File size: 160 Bytes
b4c55eb
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

def saluda(nombre):
    return "Hola" + nombre + "!"

demo = gr.Interface(fn=saluda, inputs="text", outputs="text")
demo.launch(share=True)