Otra / app.py
Doc
cambio
c4c261a
raw
history blame contribute delete
No virus
148 Bytes
import gradio as gr
def greet(name):
return "Hola " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()