Dane Summers
aider: Added hello world Gradio app in `app.py`.
063df12
raw
history blame
135 Bytes
import gradio as gr
def greet():
return "Hello, World!"
iface = gr.Interface(fn=greet, inputs=[], outputs="text")
iface.launch()