Update requirements.txt
Browse files- requirements.txt +29 -4
requirements.txt
CHANGED
|
@@ -1,5 +1,30 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
sentence-transformers
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
streamlit==1.30.0
|
| 3 |
+
streamlit-extras
|
| 4 |
+
streamlit-card
|
| 5 |
+
numpy==1.24.0
|
| 6 |
+
pandas==2.1.0
|
| 7 |
+
|
| 8 |
+
# ML & Vision
|
| 9 |
+
torch==2.1.0
|
| 10 |
+
torchvision==0.16.0
|
| 11 |
+
transformers==4.36.0
|
| 12 |
sentence-transformers
|
| 13 |
+
faiss-cpu==1.7.4
|
| 14 |
+
|
| 15 |
+
# Image Processing
|
| 16 |
+
Pillow==10.0.0
|
| 17 |
+
opencv-python-headless==4.8.1.78 # Updated to available version
|
| 18 |
+
|
| 19 |
+
# LLM Integration
|
| 20 |
+
groq
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
# Visualization
|
| 24 |
+
matplotlib==3.7.0
|
| 25 |
+
plotly
|
| 26 |
+
|
| 27 |
+
# Additional requirements
|
| 28 |
+
python-dotenv==1.0.0
|
| 29 |
+
requests==2.31.0
|
| 30 |
+
typing-extensions==4.8.0
|