File size: 174 Bytes
8c2aa7a
 
a47b344
2d26597
8c2aa7a
 
8f9b4a5
1
2
3
4
5
6
7
import gradio as gr

def greet(nombre):
    return "Hola amigo " + nombre + "!!"

iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share=True)