Spaces:
Sleeping
Sleeping
Upload requirements.txt
Browse files- requirements.txt +20 -0
requirements.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core UI
|
| 2 |
+
gradio>=4.0
|
| 3 |
+
|
| 4 |
+
# Image handling
|
| 5 |
+
Pillow>=10.0
|
| 6 |
+
numpy>=1.24
|
| 7 |
+
|
| 8 |
+
# ML / Models (Python 3.13 needs torch 2.5+)
|
| 9 |
+
torch>=2.5.0
|
| 10 |
+
transformers>=4.35
|
| 11 |
+
huggingface-hub>=0.20
|
| 12 |
+
|
| 13 |
+
# Background removal (includes onnxruntime CPU backend)
|
| 14 |
+
rembg[cpu]
|
| 15 |
+
|
| 16 |
+
# Utilities
|
| 17 |
+
python-dotenv>=1.0
|
| 18 |
+
fpdf2>=2.7
|
| 19 |
+
|
| 20 |
+
|