anzorq commited on
Commit
0f1ce4a
Β·
1 Parent(s): 0c4f2e8

ui changes

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -19,7 +19,10 @@ def debug(audio, state="", delay=0.2):
19
  # print(state)
20
  return state, state
21
 
22
- delay_slider = gr.inputs.Slider(minimum=0, maximum=10, default=0.2, label="Delay (seconds)")
 
 
 
23
 
24
  gr.Interface(
25
  fn=transcribe,
@@ -35,5 +38,6 @@ gr.Interface(
35
  "state"
36
  ],
37
  live=True,
38
- allow_flagging='never'
39
- ).launch()
 
 
19
  # print(state)
20
  return state, state
21
 
22
+
23
+ delay_slider = gr.inputs.Slider(minimum=0, maximum=10, default=0.2, label="Delay (seconds). The rate of transcription (1 sec + delay).")
24
+
25
+ title = "OpenAI's Whisper Real-time Demo"
26
 
27
  gr.Interface(
28
  fn=transcribe,
 
38
  "state"
39
  ],
40
  live=True,
41
+ allow_flagging='never',
42
+ title=title,
43
+ ).launch(enable_queue=True)