Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +22 -13
requirements.txt
CHANGED
|
@@ -1,14 +1,23 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
keras==2.12.0 # Specified version
|
| 4 |
-
streamlit==1.18.0
|
| 5 |
-
PyPDF2==1.21.0
|
| 6 |
-
langchain==0.3.4
|
| 7 |
-
langchain_google_genai==2.0.1 # Updated to the latest available version
|
| 8 |
-
langchain_community==0.3.3
|
| 9 |
-
HuggingFaceEmbeddings==0.0.1 # Adjust this version if necessary
|
| 10 |
-
google-generativeai==0.8.3
|
| 11 |
-
tensorflow==2.12.0
|
| 12 |
-
python-dotenv==1.0.0
|
| 13 |
-
python<=3.5
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Streamlit version compatible with Python < 3.5
|
| 2 |
+
streamlit==0.57.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
+
# PDF reading library
|
| 5 |
+
PyPDF2==1.26.0
|
| 6 |
+
|
| 7 |
+
# Langchain version compatible with older Python versions
|
| 8 |
+
langchain==0.0.5
|
| 9 |
+
|
| 10 |
+
# Hugging Face's transformers library (make sure to find a compatible version)
|
| 11 |
+
transformers==2.10.0 # Adjust according to compatibility with your environment
|
| 12 |
+
|
| 13 |
+
# TensorFlow version compatible with Python < 3.5
|
| 14 |
+
tensorflow==1.12.0
|
| 15 |
+
|
| 16 |
+
# Google API core version compatible with older Python versions
|
| 17 |
+
google-api-core==1.22.0
|
| 18 |
+
|
| 19 |
+
# Google Generative AI library (find a compatible version)
|
| 20 |
+
google-generativeai==0.6.0 # Adjust as needed
|
| 21 |
+
|
| 22 |
+
# Load environment variables
|
| 23 |
+
python-dotenv==0.10.5
|