Spaces:
Sleeping
Sleeping
new model
Browse files- requirements.txt +24 -10
requirements.txt
CHANGED
|
@@ -1,14 +1,28 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
torch
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
pypdf
|
| 6 |
-
pydantic
|
| 7 |
-
sentence-transformers
|
| 8 |
-
chromadb
|
| 9 |
-
gradio
|
| 10 |
-
beautifulsoup4
|
| 11 |
tensorflow==2.13.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
tenacity==8.3.0
|
| 13 |
fake_useragent
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core
|
| 2 |
+
transformers>=4.42.0
|
| 3 |
torch
|
| 4 |
+
huggingface_hub>=0.23.0
|
| 5 |
+
sentence-transformers>=3.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
tensorflow==2.13.0
|
| 7 |
+
|
| 8 |
+
# LangChain split packages (v0.2 style)
|
| 9 |
+
langchain==0.2.12
|
| 10 |
+
langchain-community==0.2.10
|
| 11 |
+
langchain-text-splitters==0.2.2
|
| 12 |
+
langchain-core==0.2.24
|
| 13 |
+
|
| 14 |
+
# Vector store
|
| 15 |
+
chromadb==0.5.3
|
| 16 |
+
|
| 17 |
+
# Web / parsing
|
| 18 |
+
beautifulsoup4>=4.12.3
|
| 19 |
+
pypdf>=4.2.0
|
| 20 |
tenacity==8.3.0
|
| 21 |
fake_useragent
|
| 22 |
+
|
| 23 |
+
# UI stack (aligned)
|
| 24 |
+
gradio==4.44.1
|
| 25 |
+
fastapi==0.115.0
|
| 26 |
+
starlette==0.38.2
|
| 27 |
+
pydantic==2.8.2
|
| 28 |
+
pydantic-core==2.20.1
|