File size: 166 Bytes
33d8b75
 
67adc88
 
d1bfa53
7911601
67adc88
1
2
3
4
5
6
7
8
import gradio as gr

def on_button_click():
    return "Button clicked!"

iface = gr.Interface(fn=on_button_click, inputs=gr.Button(), outputs="text")
iface.launch()