Update requirements.txt
Browse files- requirements.txt +6 -1
requirements.txt
CHANGED
|
@@ -1,15 +1,20 @@
|
|
| 1 |
--constraint constraints.txt
|
| 2 |
|
|
|
|
| 3 |
streamlit
|
|
|
|
|
|
|
| 4 |
datasets==3.2.0
|
| 5 |
|
|
|
|
| 6 |
haystack-ai==2.0.1
|
| 7 |
transformers==4.39.3
|
| 8 |
torch==2.2.0
|
| 9 |
accelerate==0.29.2
|
| 10 |
-
|
| 11 |
sentence-transformers==2.6.1
|
| 12 |
sentencepiece
|
| 13 |
|
|
|
|
| 14 |
mmh3==4.1.0
|
| 15 |
|
|
|
|
|
|
| 1 |
--constraint constraints.txt
|
| 2 |
|
| 3 |
+
# Main
|
| 4 |
streamlit
|
| 5 |
+
|
| 6 |
+
# HuggingFace datasets
|
| 7 |
datasets==3.2.0
|
| 8 |
|
| 9 |
+
# Haystack + QA Dependencies
|
| 10 |
haystack-ai==2.0.1
|
| 11 |
transformers==4.39.3
|
| 12 |
torch==2.2.0
|
| 13 |
accelerate==0.29.2
|
|
|
|
| 14 |
sentence-transformers==2.6.1
|
| 15 |
sentencepiece
|
| 16 |
|
| 17 |
+
# Extra
|
| 18 |
mmh3==4.1.0
|
| 19 |
|
| 20 |
+
|