iabd / hola
danielgi97's picture
Create hola
8302134 verified
raw
history blame
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)