Duplicated from radames/nginx-gradio-reverse-proxy
2af848d cd57287
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr def greet(name): return "Hello " + name + "!" with gr.Blocks() as blocks: with gr.Row(): text_in = gr.Text() text_out = gr.Text() btn = gr.Button("Run") btn.click(fn=greet, inputs=text_in, outputs=text_out) blocks.launch()