navid72m commited on
Commit
61eb8f0
·
verified ·
1 Parent(s): 43efcb9

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -13
requirements.txt CHANGED
@@ -1,18 +1,24 @@
 
 
 
1
  streamlit>=1.22.0
 
 
 
 
 
 
2
  sentence-transformers>=2.2.2
3
  transformers>=4.28.1
4
- accelerate>=0.18.0
5
- torch>=2.0.0
6
- pymongo>=4.3.3
7
- rank_bm25>=0.2.2
8
- scikit-learn>=1.2.2
9
- pymupdf>=1.22.5
10
  python-docx>=0.8.11
11
- langchain>=0.0.335
12
- nltk>=3.8.1
13
  openai>=1.0.0
14
- numpy>=1.24.0
15
- python-dotenv>=0.20.0
16
- PyMuPDF>=1.18.0
17
- faiss-cpu==1.7.4
18
- PyPDF2
 
1
+ # Core dependencies
2
+ numpy>=1.24.0
3
+ torch>=2.0.0
4
  streamlit>=1.22.0
5
+ fastapi>=0.95.0
6
+ uvicorn>=0.22.0
7
+ python-dotenv>=0.20.0
8
+ pydantic>=1.10.0
9
+
10
+ # Embedding and vector search
11
  sentence-transformers>=2.2.2
12
  transformers>=4.28.1
13
+ faiss-cpu==1.7.4
14
+
15
+ # Document processing
16
+ PyPDF2>=3.0.0
 
 
17
  python-docx>=0.8.11
18
+
19
+ # LLM integration (optional)
20
  openai>=1.0.0
21
+
22
+ # Utilities
23
+ tqdm>=4.65.0
24
+ requests>=2.28.0