sofzcc commited on
Commit
2e97c72
·
verified ·
1 Parent(s): 269679e

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -3
requirements.txt CHANGED
@@ -1,9 +1,25 @@
 
 
 
 
1
  gradio==4.44.1
2
- transformers==4.36.0
3
- sentence-transformers==2.2.2
 
 
 
 
4
  faiss-cpu==1.7.4
5
  numpy==1.24.3
 
 
6
  PyPDF2==3.0.1
7
  python-docx==1.1.0
 
 
8
  pyyaml==6.0.1
9
- torch==2.1.0
 
 
 
 
 
1
+ # Requirements for RAG Assistant
2
+ # Tested compatible versions for Python 3.10
3
+
4
+ # Core dependencies
5
  gradio==4.44.1
6
+ transformers==4.36.2
7
+ sentence-transformers==2.7.0
8
+ torch==2.1.2
9
+ huggingface-hub==0.23.0
10
+
11
+ # Vector search
12
  faiss-cpu==1.7.4
13
  numpy==1.24.3
14
+
15
+ # Document processing
16
  PyPDF2==3.0.1
17
  python-docx==1.1.0
18
+
19
+ # Configuration
20
  pyyaml==6.0.1
21
+
22
+ # Additional dependencies that may be needed
23
+ tokenizers>=0.15.0
24
+ safetensors>=0.4.0
25
+ tqdm>=4.65.0