Update app.py
Browse files
app.py
CHANGED
@@ -94,7 +94,7 @@ with gr.Blocks() as demo:
|
|
94 |
|
95 |
with gr.Tab("Keep Alive"):
|
96 |
gr.Textbox(label="Ping", value="ping", interactive=False)
|
97 |
-
gr.Button("Ping").click(keep_alive, inputs=None, outputs=
|
98 |
|
99 |
# Enable request queue (multi-user safe)
|
100 |
demo.queue() # simple queue; compatible with current Gradio versions
|
|
|
94 |
|
95 |
with gr.Tab("Keep Alive"):
|
96 |
gr.Textbox(label="Ping", value="ping", interactive=False)
|
97 |
+
gr.Button("Ping").click(keep_alive, inputs=None, outputs="pong")
|
98 |
|
99 |
# Enable request queue (multi-user safe)
|
100 |
demo.queue() # simple queue; compatible with current Gradio versions
|