Spaces:
Running
Running
Add optional audio dependencies and FFmpeg note to requirements.txt
Browse files- requirements.txt +17 -3
requirements.txt
CHANGED
@@ -1,9 +1,23 @@
|
|
1 |
gradio[full]
|
2 |
gradio[mcp]
|
3 |
-
|
4 |
-
|
|
|
|
|
5 |
transformers
|
6 |
torch
|
7 |
accelerate
|
|
|
|
|
8 |
langchain
|
9 |
-
langchain-community
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
gradio[full]
|
2 |
gradio[mcp]
|
3 |
+
|
4 |
+
# core Llama-Index + HF model support
|
5 |
+
llama-index
|
6 |
+
openai
|
7 |
transformers
|
8 |
torch
|
9 |
accelerate
|
10 |
+
|
11 |
+
# optional extras
|
12 |
langchain
|
13 |
+
langchain-community
|
14 |
+
|
15 |
+
# audio input (choose at least one):
|
16 |
+
sounddevice # cross-platform realtime mic capture
|
17 |
+
pyaudio # alternative on Windows
|
18 |
+
|
19 |
+
# (system requirement, not a pip package)
|
20 |
+
# • ffmpeg must be installed on your machine for any audio I/O
|
21 |
+
# • Debian/Ubuntu: sudo apt install ffmpeg
|
22 |
+
# • macOS (homebrew): brew install ffmpeg
|
23 |
+
# • Windows: download from https://ffmpeg.org/download.html
|