fatimazahra22-4 commited on
Commit
1295e07
·
verified ·
1 Parent(s): c64430e

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +27 -0
requirements.txt ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core Backend
2
+ fastapi>=0.95.0
3
+ uvicorn>=0.21.0
4
+ python-multipart>=0.0.6
5
+ jinja2
6
+ slowapi>=0.1.5 # Optional: for rate limiting
7
+
8
+ # NLP & Vision Models
9
+ transformers==4.34.1 # Stable with Keras 2.x
10
+ sentence-transformers>=2.2.2
11
+ torch>=2.0.0
12
+ tensorflow==2.12.0
13
+ keras==2.12.0
14
+ tf-keras>=2.12.0
15
+ openai>=0.27.0
16
+
17
+ # Document Parsing
18
+ pymupdf>=1.21.1 # PDF & image parsing
19
+ python-docx>=0.8.11
20
+ python-pptx>=0.6.21
21
+ pytesseract>=0.3.10
22
+ pillow>=9.5.0
23
+
24
+ # Data & Visualization
25
+ pandas>=1.5.0
26
+ matplotlib>=3.7.0
27
+ seaborn>=0.12.0