Create requirements.txt
Browse files- requirements.txt +22 -0
requirements.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core model dependencies
|
2 |
+
torch>=2.3.0
|
3 |
+
transformers>=4.42.0
|
4 |
+
accelerate>=0.30.0
|
5 |
+
safetensors>=0.4.3
|
6 |
+
sentencepiece>=0.2.0 # for translation model
|
7 |
+
|
8 |
+
# Text-to-Image (Stable Diffusion)
|
9 |
+
diffusers>=0.28.0
|
10 |
+
pillow>=10.3.0
|
11 |
+
|
12 |
+
# UI
|
13 |
+
gradio>=4.15.0
|
14 |
+
|
15 |
+
# Optional document parsing support (placeholder in app.py)
|
16 |
+
python-docx>=1.1.0
|
17 |
+
pdfplumber>=0.11.0
|
18 |
+
pypdf>=3.17.6
|
19 |
+
openpyxl>=3.1.2
|
20 |
+
|
21 |
+
# Utility
|
22 |
+
tqdm
|