188a677
1
2
3
4
5
6
7
import gradio as gr def greet(): return "gm gm ☀️" iface = gr.Interface(fn=greet, inputs=[], outputs="text") iface.launch()