Myel / app.py
Gmarko's picture
Add share=True
8f9b4a5
raw
history blame contribute delete
174 Bytes
import gradio as gr
def greet(nombre):
return "Hola amigo " + nombre + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(share=True)