Krishnavamshithumma commited on
Commit
12ef89e
·
verified ·
1 Parent(s): 67fa913

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -236,11 +236,10 @@ with gr.Blocks(title="Voice Bot: Krishnavamshi Thumma") as demo:
236
  type="numpy", # Expects (samplerate, numpy_array) for playback
237
  autoplay=True, # Automatically play the audio
238
  waveform_options={
239
- "skip_length": 0,
240
- "cursor_color": "#000000",
241
- "wave_color": "#2196F3",
242
- "wave_progress_color": "#4CAF50",
243
- "unfilled_waveform_color": "#E0E0E0"
244
  }
245
  )
246
 
 
236
  type="numpy", # Expects (samplerate, numpy_array) for playback
237
  autoplay=True, # Automatically play the audio
238
  waveform_options={
239
+ "skip_length": 0,
240
+ "waveform_color": "#2196F3",
241
+ "waveform_progress_color": "#4CAF50",
242
+ # Removed 'cursor_color' and 'unfilled_waveform_color' as they are not standard options here
 
243
  }
244
  )
245