Spaces:
Runtime error
Runtime error
liuyang
commited on
Commit
·
2d46747
1
Parent(s):
e045021
remove source param
Browse filesfixed pydantic version
- app.py +1 -1
- requirements.txt +1 -0
app.py
CHANGED
|
@@ -353,7 +353,7 @@ with demo:
|
|
| 353 |
audio_input = gr.Audio(
|
| 354 |
label="🎵 Upload Audio File",
|
| 355 |
type="filepath",
|
| 356 |
-
source="upload"
|
| 357 |
)
|
| 358 |
|
| 359 |
with gr.Accordion("⚙️ Advanced Settings", open=False):
|
|
|
|
| 353 |
audio_input = gr.Audio(
|
| 354 |
label="🎵 Upload Audio File",
|
| 355 |
type="filepath",
|
| 356 |
+
#source="upload"
|
| 357 |
)
|
| 358 |
|
| 359 |
with gr.Accordion("⚙️ Advanced Settings", open=False):
|
requirements.txt
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
# Core ML libraries
|
|
|
|
| 2 |
torch>=2.0.0
|
| 3 |
torchaudio>=2.0.0
|
| 4 |
transformers>=4.35.0
|
|
|
|
| 1 |
# Core ML libraries
|
| 2 |
+
pydantic==2.10.6
|
| 3 |
torch>=2.0.0
|
| 4 |
torchaudio>=2.0.0
|
| 5 |
transformers>=4.35.0
|