elucidate / app.py
Barton Rhodes
gm
188a677
raw
history blame
133 Bytes
import gradio as gr
def greet():
return "gm gm ☀️"
iface = gr.Interface(fn=greet, inputs=[], outputs="text")
iface.launch()