Spaces:
Running
on
Zero
Running
on
Zero
Update requirements.txt
Browse files- requirements.txt +38 -9
requirements.txt
CHANGED
@@ -1,9 +1,38 @@
|
|
1 |
-
|
2 |
-
torch>=2.
|
3 |
-
transformers>=4.
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core ML Libraries
|
2 |
+
torch>=2.0.0
|
3 |
+
transformers>=4.30.0
|
4 |
+
accelerate>=0.20.0
|
5 |
+
bitsandbytes>=0.39.0
|
6 |
+
|
7 |
+
# Gradio for UI
|
8 |
+
gradio>=4.0.0
|
9 |
+
spaces>=0.19.4
|
10 |
+
|
11 |
+
# LangGraph for workflow management
|
12 |
+
langgraph>=0.0.40
|
13 |
+
langchain>=0.1.0
|
14 |
+
langchain-core>=0.1.0
|
15 |
+
|
16 |
+
# RAG and Vector Search
|
17 |
+
sentence-transformers>=2.2.2
|
18 |
+
faiss-cpu>=1.7.4
|
19 |
+
# For GPU support, use: faiss-gpu>=1.7.4
|
20 |
+
|
21 |
+
# Data Processing
|
22 |
+
numpy>=1.24.0
|
23 |
+
pandas>=2.0.0
|
24 |
+
scipy>=1.10.0
|
25 |
+
|
26 |
+
# Text Processing
|
27 |
+
regex>=2023.0.0
|
28 |
+
nltk>=3.8.0
|
29 |
+
spacy>=3.6.0
|
30 |
+
|
31 |
+
# Utility Libraries
|
32 |
+
python-dateutil>=2.8.0
|
33 |
+
requests>=2.31.0
|
34 |
+
urllib3>=2.0.0
|
35 |
+
|
36 |
+
# JSON and Data Handling
|
37 |
+
jsonschema>=4.17.0
|
38 |
+
pydantic>=2.0.0
|