gpaasch commited on
Commit
0049338
·
1 Parent(s): daa3242

Streamline dependencies for better build reliability

Browse files
Files changed (1) hide show
  1. requirements.txt +7 -19
requirements.txt CHANGED
@@ -1,28 +1,16 @@
1
- gradio[full]
2
- gradio[mcp]
3
- gradio
4
 
5
- # core Llama-Index + HF model support
6
- torch
7
- transformers[torch]
8
- accelerate
9
  llama-index>=0.9.0
10
  llama-index-embeddings-huggingface
11
- llama-index-llms-huggingface
12
  llama-index-llms-llama-cpp
13
-
14
- # Language models and embeddings
15
  sentence-transformers>=2.2.0
16
- ctransformers[cuda]>=0.2.24 # For local LLM support with CUDA
17
- huggingface-hub # For model downloading
18
-
19
- # optional extras
20
- langchain
21
- langchain-community
22
- requests # For MCP endpoint testing
23
 
24
- # system requirement for audio I/O
25
  ffmpeg-python
26
 
27
- psutil # For system resource detection
 
28
  gtts==2.3.1
 
1
+ # Core dependencies
2
+ gradio[full]>=5.33.0
3
+ gradio[mcp]>=5.33.0
4
 
5
+ # LLM and embeddings
 
 
 
6
  llama-index>=0.9.0
7
  llama-index-embeddings-huggingface
 
8
  llama-index-llms-llama-cpp
 
 
9
  sentence-transformers>=2.2.0
 
 
 
 
 
 
 
10
 
11
+ # Audio processing
12
  ffmpeg-python
13
 
14
+ # System utilities
15
+ psutil
16
  gtts==2.3.1