Update requirements.txt
Browse files- requirements.txt +12 -6
requirements.txt
CHANGED
|
@@ -1,15 +1,16 @@
|
|
| 1 |
# Core dependencies
|
| 2 |
streamlit==1.31.1
|
| 3 |
-
haystack-ai
|
| 4 |
openai==1.59.7
|
| 5 |
langchain==0.3.14
|
| 6 |
-
sentence-transformers==2.
|
|
|
|
| 7 |
faiss-cpu==1.9.0
|
| 8 |
|
| 9 |
# Data processing
|
| 10 |
-
numpy>=1.24.0
|
| 11 |
-
pandas>=2.0.0
|
| 12 |
-
scikit-learn>=1.0.0
|
| 13 |
rouge-score>=0.1.2
|
| 14 |
|
| 15 |
# Utility libraries
|
|
@@ -24,4 +25,9 @@ black>=22.0.0
|
|
| 24 |
flake8>=6.0.0
|
| 25 |
|
| 26 |
# Thai language support
|
| 27 |
-
pythainlp>=4.0.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Core dependencies
|
| 2 |
streamlit==1.31.1
|
| 3 |
+
haystack-ai==2.9.0
|
| 4 |
openai==1.59.7
|
| 5 |
langchain==0.3.14
|
| 6 |
+
sentence-transformers==2.5.1
|
| 7 |
+
huggingface-hub>=0.19.4,<1.0.0
|
| 8 |
faiss-cpu==1.9.0
|
| 9 |
|
| 10 |
# Data processing
|
| 11 |
+
numpy>=1.24.0,<2.0.0
|
| 12 |
+
pandas>=2.0.0,<3.0.0
|
| 13 |
+
scikit-learn>=1.0.0,<2.0.0
|
| 14 |
rouge-score>=0.1.2
|
| 15 |
|
| 16 |
# Utility libraries
|
|
|
|
| 25 |
flake8>=6.0.0
|
| 26 |
|
| 27 |
# Thai language support
|
| 28 |
+
pythainlp>=4.0.2
|
| 29 |
+
|
| 30 |
+
# Additional required dependencies
|
| 31 |
+
transformers>=4.36.0
|
| 32 |
+
torch>=2.0.0
|
| 33 |
+
tokenizers>=0.15.0
|