Create requirements.txt
Browse files- requirements.txt +23 -0
requirements.txt
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Dependencies
|
| 2 |
+
gradio==4.36.0
|
| 3 |
+
torch==2.1.2+cpu
|
| 4 |
+
torchvision==0.16.2+cpu
|
| 5 |
+
diffusers==0.25.0
|
| 6 |
+
|
| 7 |
+
# FLUX.1 & Model Loading
|
| 8 |
+
transformers==4.36.0
|
| 9 |
+
safetensors==0.4.1
|
| 10 |
+
huggingface-hub==0.20.0
|
| 11 |
+
huggingface_hub[cli]==0.20.0
|
| 12 |
+
|
| 13 |
+
# GGUF Support (optional but recommended)
|
| 14 |
+
llama-cpp-python==0.2.29
|
| 15 |
+
gguf==0.6.0
|
| 16 |
+
|
| 17 |
+
# CPU Optimization
|
| 18 |
+
numpy==1.24.3
|
| 19 |
+
pillow==10.1.0
|
| 20 |
+
|
| 21 |
+
# Utilities
|
| 22 |
+
pydantic==2.4.2
|
| 23 |
+
python-dotenv==1.0.0
|