Spaces:
Sleeping
Sleeping
Developer commited on
Commit ·
e5683a2
1
Parent(s): e50a10b
Remove unused deps: openai, langchain, ragas, tenacity, aiohttp
Browse files- requirements.txt +4 -12
requirements.txt
CHANGED
|
@@ -1,10 +1,9 @@
|
|
| 1 |
# Core Dependencies
|
| 2 |
streamlit>=1.31.0
|
| 3 |
-
python-dotenv
|
| 4 |
|
| 5 |
-
# LLM
|
| 6 |
groq>=0.11.0
|
| 7 |
-
openai>=1.12.0
|
| 8 |
|
| 9 |
# Embeddings and Vector Store
|
| 10 |
sentence-transformers>=2.2.0
|
|
@@ -17,20 +16,13 @@ qdrant-client>=1.7.0
|
|
| 17 |
pandas>=2.0.0
|
| 18 |
numpy>=1.24.0
|
| 19 |
datasets>=2.16.0
|
|
|
|
| 20 |
|
| 21 |
-
#
|
| 22 |
-
langchain>=0.1.0
|
| 23 |
-
langchain-community>=0.0.10
|
| 24 |
-
langchain-groq>=0.0.1
|
| 25 |
-
|
| 26 |
-
# Evaluation
|
| 27 |
-
ragas>=0.1.0
|
| 28 |
rank-bm25>=0.2.2
|
| 29 |
|
| 30 |
# Utilities
|
| 31 |
pydantic>=2.0.0
|
| 32 |
pydantic-settings>=2.0.0
|
| 33 |
-
tenacity>=8.2.0
|
| 34 |
-
aiohttp>=3.9.0
|
| 35 |
tqdm>=4.66.0
|
| 36 |
requests>=2.31.0
|
|
|
|
| 1 |
# Core Dependencies
|
| 2 |
streamlit>=1.31.0
|
| 3 |
+
python-dotenv>=1.0.0
|
| 4 |
|
| 5 |
+
# LLM
|
| 6 |
groq>=0.11.0
|
|
|
|
| 7 |
|
| 8 |
# Embeddings and Vector Store
|
| 9 |
sentence-transformers>=2.2.0
|
|
|
|
| 16 |
pandas>=2.0.0
|
| 17 |
numpy>=1.24.0
|
| 18 |
datasets>=2.16.0
|
| 19 |
+
scikit-learn>=1.3.0
|
| 20 |
|
| 21 |
+
# Retrieval
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
rank-bm25>=0.2.2
|
| 23 |
|
| 24 |
# Utilities
|
| 25 |
pydantic>=2.0.0
|
| 26 |
pydantic-settings>=2.0.0
|
|
|
|
|
|
|
| 27 |
tqdm>=4.66.0
|
| 28 |
requests>=2.31.0
|