april / app.py
ariefrahmansyah's picture
Add gradio hello world app; add github actions to sync to hub
b77ca10
raw
history blame contribute delete
No virus
152 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()