File size: 161 Bytes
8978cbf
 
 
 
 
 
 
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)