andrijdavid Qwen-Coder commited on
Commit
ddae84a
·
1 Parent(s): ddbe379

Fix FileNotFoundError for example1.wav by removing non-existent example file reference

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -270,7 +270,7 @@ interface = gr.Interface(
270
  Upload an audio file (MP3, WAV, or other common formats) and get a timestamped transcript with speaker labels.
271
  """,
272
  examples=[
273
- ["example1.wav"], # Add example files if available
274
  ],
275
  cache_examples=False
276
  )
 
270
  Upload an audio file (MP3, WAV, or other common formats) and get a timestamped transcript with speaker labels.
271
  """,
272
  examples=[
273
+ # Add example files if available
274
  ],
275
  cache_examples=False
276
  )