Spaces:
Sleeping
Sleeping
Ali Abdullah commited on
Update requirements.txt
Browse files- requirements.txt +13 -28
requirements.txt
CHANGED
|
@@ -1,31 +1,16 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
| 3 |
-
uvicorn[standard]==0.24.0
|
| 4 |
-
|
| 5 |
-
# RAG and Embeddings
|
| 6 |
-
groq==0.4.1
|
| 7 |
-
sentence-transformers==2.2.2
|
| 8 |
-
pinecone-client==2.2.4
|
| 9 |
-
faiss-cpu==1.7.4
|
| 10 |
-
huggingface_hub>=0.14.1 # compatible with sentence-transformers
|
| 11 |
-
|
| 12 |
-
# Web content loading and scraping
|
| 13 |
-
beautifulsoup4==4.12.2
|
| 14 |
-
requests==2.31.0
|
| 15 |
-
scrapy==2.11.0
|
| 16 |
-
|
| 17 |
-
# Data cache / environment
|
| 18 |
-
redis==5.0.1
|
| 19 |
-
python-dotenv==1.0.0
|
| 20 |
|
| 21 |
-
#
|
| 22 |
-
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
-
#
|
| 26 |
-
|
| 27 |
|
| 28 |
-
#
|
| 29 |
-
|
| 30 |
-
pytest==7.4.3
|
| 31 |
-
black==23.11.0
|
|
|
|
| 1 |
+
# Gradio UI
|
| 2 |
+
gradio
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
+
# RAG components
|
| 5 |
+
sentence-transformers
|
| 6 |
+
faiss-cpu
|
| 7 |
+
beautifulsoup4
|
| 8 |
+
requests
|
| 9 |
+
langchain
|
| 10 |
+
langchain-community
|
| 11 |
|
| 12 |
+
# GROQ API (if used)
|
| 13 |
+
groq
|
| 14 |
|
| 15 |
+
# Optional (if you use environment variables)
|
| 16 |
+
python-dotenv
|
|
|
|
|
|