Update requirements.txt
Browse files- requirements.txt +7 -2
requirements.txt
CHANGED
|
@@ -1,4 +1,9 @@
|
|
| 1 |
streamlit==1.20.0
|
| 2 |
-
groq==0.1.0 # Adjust to the
|
| 3 |
python-dotenv==1.0.0
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
streamlit==1.20.0
|
| 2 |
+
groq==0.1.0 # Adjust to the actual version you're using
|
| 3 |
python-dotenv==1.0.0
|
| 4 |
+
|
| 5 |
+
# Text-to-image libraries
|
| 6 |
+
torch==1.12.1 # PyTorch (required for models like Stable Diffusion)
|
| 7 |
+
transformers==4.21.0 # Hugging Face transformers for text-to-image models
|
| 8 |
+
diffusers==0.5.1 # Hugging Face diffusers library for text-to-image models like Stable Diffusion
|
| 9 |
+
Pillow==9.0.0 # Image processing library
|