Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +16 -6
requirements.txt
CHANGED
@@ -1,16 +1,26 @@
|
|
|
|
|
|
|
|
1 |
|
2 |
-
|
3 |
gradio==4.27.0
|
4 |
-
openai==
|
|
|
|
|
5 |
pydub
|
|
|
|
|
6 |
ffmpeg-python
|
|
|
|
|
7 |
python-docx
|
8 |
pdfplumber
|
9 |
pandas
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
14 |
|
15 |
|
16 |
|
|
|
1 |
+
# Local Whisper support
|
2 |
+
whisper @ git+https://github.com/openai/whisper.git
|
3 |
+
torch
|
4 |
|
5 |
+
# Gradio & OpenAI
|
6 |
gradio==4.27.0
|
7 |
+
openai==1.30.1
|
8 |
+
|
9 |
+
# Audio
|
10 |
pydub
|
11 |
+
sounddevice
|
12 |
+
scipy
|
13 |
ffmpeg-python
|
14 |
+
|
15 |
+
# File support
|
16 |
python-docx
|
17 |
pdfplumber
|
18 |
pandas
|
19 |
+
Pillow
|
20 |
+
openpyxl
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
|
25 |
|
26 |
|