Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +16 -3
requirements.txt
CHANGED
|
@@ -1,13 +1,26 @@
|
|
|
|
|
| 1 |
streamlit==1.41.0
|
|
|
|
|
|
|
| 2 |
torch>=2.0.0
|
| 3 |
-
transformers
|
| 4 |
accelerate>=0.26.0
|
| 5 |
sentencepiece
|
| 6 |
-
|
|
|
|
| 7 |
pypdf
|
|
|
|
|
|
|
|
|
|
| 8 |
uvicorn
|
| 9 |
fastapi
|
|
|
|
|
|
|
| 10 |
plotly
|
| 11 |
streamlit-agraph
|
|
|
|
|
|
|
| 12 |
loguru
|
| 13 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core
|
| 2 |
streamlit==1.41.0
|
| 3 |
+
|
| 4 |
+
# AI / Transformers
|
| 5 |
torch>=2.0.0
|
| 6 |
+
transformers==4.48.0
|
| 7 |
accelerate>=0.26.0
|
| 8 |
sentencepiece
|
| 9 |
+
|
| 10 |
+
# PDF and parsing
|
| 11 |
pypdf
|
| 12 |
+
protobuf
|
| 13 |
+
|
| 14 |
+
# Web / API
|
| 15 |
uvicorn
|
| 16 |
fastapi
|
| 17 |
+
|
| 18 |
+
# Visualization
|
| 19 |
plotly
|
| 20 |
streamlit-agraph
|
| 21 |
+
|
| 22 |
+
# Logging
|
| 23 |
loguru
|
| 24 |
+
|
| 25 |
+
# Custom / other
|
| 26 |
+
glirel
|