oceansweep commited on
Commit
ed236c2
·
verified ·
1 Parent(s): 4fc5191

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -1327,9 +1327,11 @@ def launch_ui(demo_mode=False):
1327
  download_audio_input = gr.Checkbox(
1328
  label="Download Audio(Select to allow for file download of selected Video's Audio)", value=False,
1329
  visible=False)
1330
-
 
 
1331
  inputs = [num_speakers_input, whisper_model_input, custom_prompt_input, offset_input, api_name_input,
1332
- api_key_input, vad_filter_input, download_video_input, download_audio_input]
1333
 
1334
  # Function to toggle Light/Dark Mode
1335
  def toggle_light(mode):
 
1327
  download_audio_input = gr.Checkbox(
1328
  label="Download Audio(Select to allow for file download of selected Video's Audio)", value=False,
1329
  visible=False)
1330
+ detail_level_input = gr.Slider(minimum=0.0, maximum=1.0, value=0.1, step=0.1, interactive=True,
1331
+ label="Detail Level (Slide me)", visible=False)
1332
+
1333
  inputs = [num_speakers_input, whisper_model_input, custom_prompt_input, offset_input, api_name_input,
1334
+ api_key_input, vad_filter_input, download_video_input, download_audio_input, detail_level_input]
1335
 
1336
  # Function to toggle Light/Dark Mode
1337
  def toggle_light(mode):