Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +23 -0
requirements.txt
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core LangChain dependencies
|
2 |
+
langchain
|
3 |
+
langchain-community
|
4 |
+
langchain-huggingface
|
5 |
+
langchain[hub]
|
6 |
+
|
7 |
+
# Vector stores and retrieval
|
8 |
+
qdrant-client
|
9 |
+
|
10 |
+
# Transformers and NLP
|
11 |
+
transformers
|
12 |
+
datasets
|
13 |
+
huggingface-hub
|
14 |
+
sentence-transformers
|
15 |
+
langdetect
|
16 |
+
|
17 |
+
# Web framework
|
18 |
+
fastapi
|
19 |
+
uvicorn[standard]
|
20 |
+
|
21 |
+
# Misc
|
22 |
+
torch
|
23 |
+
accelerate
|