Update app.py
Browse files
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 |
-
"
|
241 |
-
"
|
242 |
-
|
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 |
|