Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +20 -4
requirements.txt
CHANGED
|
@@ -1,14 +1,30 @@
|
|
|
|
|
| 1 |
gradio==4.44.0
|
| 2 |
numpy==1.24.3
|
| 3 |
pandas==2.0.3
|
|
|
|
|
|
|
| 4 |
langchain==0.1.0
|
| 5 |
langchain-core==0.1.0
|
| 6 |
langchain-community==0.0.10
|
| 7 |
-
langchain-groq
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
faiss-cpu==1.7.4
|
| 9 |
sentence-transformers==2.2.2
|
| 10 |
-
|
|
|
|
| 11 |
python-dotenv==1.0.0
|
| 12 |
requests==2.31.0
|
| 13 |
-
|
| 14 |
-
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
gradio==4.44.0
|
| 3 |
numpy==1.24.3
|
| 4 |
pandas==2.0.3
|
| 5 |
+
|
| 6 |
+
# LangChain ecosystem
|
| 7 |
langchain==0.1.0
|
| 8 |
langchain-core==0.1.0
|
| 9 |
langchain-community==0.0.10
|
| 10 |
+
langchain-groq==0.0.3
|
| 11 |
+
|
| 12 |
+
# Open-source model support
|
| 13 |
+
transformers>=4.30.0
|
| 14 |
+
torch>=2.0.0
|
| 15 |
+
accelerate>=0.20.0
|
| 16 |
+
|
| 17 |
+
# Local model serving
|
| 18 |
+
ollama>=0.1.0
|
| 19 |
+
|
| 20 |
+
# Free search tools
|
| 21 |
+
duckduckgo-search>=3.0.0
|
| 22 |
+
|
| 23 |
+
# Vector database and embeddings
|
| 24 |
faiss-cpu==1.7.4
|
| 25 |
sentence-transformers==2.2.2
|
| 26 |
+
|
| 27 |
+
# Utilities
|
| 28 |
python-dotenv==1.0.0
|
| 29 |
requests==2.31.0
|
| 30 |
+
wikipedia>=1.4.0
|
|
|