gpaasch commited on
Commit
1a0e627
·
1 Parent(s): f5a0b35

Add optional audio dependencies and FFmpeg note to requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +17 -3
requirements.txt CHANGED
@@ -1,9 +1,23 @@
1
  gradio[full]
2
  gradio[mcp]
3
- llama-index==0.6.9
4
- openai==0.27.0
 
 
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