Spaces:
Build error
Build error
Streamline dependencies for better build reliability
Browse files- requirements.txt +7 -19
requirements.txt
CHANGED
@@ -1,28 +1,16 @@
|
|
1 |
-
|
2 |
-
gradio[
|
3 |
-
gradio
|
4 |
|
5 |
-
#
|
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 |
-
#
|
25 |
ffmpeg-python
|
26 |
|
27 |
-
|
|
|
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
|