Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +10 -6
requirements.txt
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
streamlit
|
|
|
|
| 2 |
langchain
|
| 3 |
torch
|
| 4 |
faiss-cpu
|
|
@@ -6,11 +7,14 @@ langchain-core
|
|
| 6 |
langchain-huggingface
|
| 7 |
langchain-openai
|
| 8 |
langchain-ollama
|
| 9 |
-
langchain-community
|
| 10 |
python-dotenv
|
| 11 |
-
langchain-core
|
| 12 |
-
langchain-ollama
|
| 13 |
-
langchain-huggingface
|
| 14 |
-
langchain-openai
|
| 15 |
langchain-community
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
streamlit
|
| 2 |
+
pypdf
|
| 3 |
langchain
|
| 4 |
torch
|
| 5 |
faiss-cpu
|
|
|
|
| 7 |
langchain-huggingface
|
| 8 |
langchain-openai
|
| 9 |
langchain-ollama
|
|
|
|
| 10 |
python-dotenv
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
langchain-community
|
| 12 |
+
PyPDF2
|
| 13 |
+
pymupdf # If you're using PyMuPDF (required by PyPDFLoader)
|
| 14 |
+
transformers # For Hugging Face's transformers (e.g., GPT-2, GPT-3)
|
| 15 |
+
nltk # If you're using NLTK for text processing
|
| 16 |
+
spacy # For NLP (if used)
|
| 17 |
+
faiss-cpu # FAISS for efficient similarity search
|
| 18 |
+
scikit-learn # For any machine learning tasks (if needed)
|
| 19 |
+
requests # For making HTTP requests (if you're calling APIs)
|
| 20 |
+
pytorch-lightning # For PyTorch model management (if needed)
|