oceansweep commited on
Commit
e77889a
·
verified ·
1 Parent(s): 3fc0a0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1251,10 +1251,10 @@ def launch_ui(demo_mode=False):
1251
  return ""
1252
 
1253
  inputs = [
1254
- gr.components.Textbox(label="URL"),
1255
- gr.components.Number(value=2, label="Number of Speakers"),
1256
- gr.components.Dropdown(choices=whisper_models, value="small.en", label="Whisper Model"),
1257
- gr.components.Number(value=0, label="Offset time to start transcribing from\n (helpful if you only want part of a video/lecture)")
1258
  ]
1259
 
1260
  if not demo_mode:
 
1251
  return ""
1252
 
1253
  inputs = [
1254
+ gr.components.Textbox(label="URL of video to be Transcribed/Summarized"),
1255
+ gr.components.Number(value=2, label="Number of Speakers (for Diarization)"),
1256
+ gr.components.Dropdown(choices=whisper_models, value="small.en", label="Whisper Model (Can ignore this)"),
1257
+ gr.components.Number(value=0, label="Offset time to start transcribing from\n\n (helpful if you only want part of a video/lecture)")
1258
  ]
1259
 
1260
  if not demo_mode: