Another slight UI improvement, moved text about refresh session to let another user try the app into the upper string
Browse files
app.py
CHANGED
|
@@ -99,13 +99,12 @@ with gr.Blocks() as demo:
|
|
| 99 |
out = gr.Textbox(label="Transcription")
|
| 100 |
session_state = gr.State(lambda: ASRSession())
|
| 101 |
|
| 102 |
-
gr.Markdown("### HOW TO USE THE APP:")
|
| 103 |
gr.Video(value="demo0__5-24-2025.mp4", autoplay=False,
|
| 104 |
width=384,
|
| 105 |
height=216
|
| 106 |
)
|
| 107 |
|
| 108 |
-
gr.Markdown("### Please **refresh or close** the tab when finished so the next person can use it.")
|
| 109 |
gr.Markdown("### The session isolation mechanism is ENABLED and ALLOWS ONLY ONE USER to use the app at a time.")
|
| 110 |
|
| 111 |
with gr.Row():
|
|
|
|
| 99 |
out = gr.Textbox(label="Transcription")
|
| 100 |
session_state = gr.State(lambda: ASRSession())
|
| 101 |
|
| 102 |
+
gr.Markdown("### HOW TO USE THE APP: Please **refresh or close** the tab when finished so the next person can use it.")
|
| 103 |
gr.Video(value="demo0__5-24-2025.mp4", autoplay=False,
|
| 104 |
width=384,
|
| 105 |
height=216
|
| 106 |
)
|
| 107 |
|
|
|
|
| 108 |
gr.Markdown("### The session isolation mechanism is ENABLED and ALLOWS ONLY ONE USER to use the app at a time.")
|
| 109 |
|
| 110 |
with gr.Row():
|