Spaces:
Sleeping
Sleeping
Commit ·
ddae84a
1
Parent(s): ddbe379
Fix FileNotFoundError for example1.wav by removing non-existent example file reference
Browse files
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 |
-
|
| 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 |
)
|