Entrega105.3 / app.py
ismaeltorres00's picture
Create app.py
63a5057 verified
raw
history blame contribute delete
No virus
161 Bytes
import gradio as gr
def saluda(nombre):
return "Hola " + nombre + "!"
demo = gr.Interface(fn=saluda, inputs="text", outputs="text")
demo.launch(share=True)