Update app.py
Browse files
app.py
CHANGED
@@ -11,5 +11,6 @@ with gr.Blocks() as blocks:
|
|
11 |
text_out = gr.Text()
|
12 |
btn = gr.Button("Run")
|
13 |
btn.click(fn=greet, inputs=text_in, outputs=text_out)
|
14 |
-
|
|
|
15 |
blocks.launch()
|
|
|
11 |
text_out = gr.Text()
|
12 |
btn = gr.Button("Run")
|
13 |
btn.click(fn=greet, inputs=text_in, outputs=text_out)
|
14 |
+
|
15 |
+
blocks.queue()
|
16 |
blocks.launch()
|