Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +9 -0
requirements.txt
CHANGED
@@ -1 +1,10 @@
|
|
1 |
gradio==4.31.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
gradio==4.31.0
|
2 |
+
torch # requires torch 2.1.1+ (for efficient sdpa implementation)
|
3 |
+
PyMuPDF # for reading PDFs with Python
|
4 |
+
tqdm # for progress bars
|
5 |
+
sentence-transformers # for embedding models
|
6 |
+
accelerate # for quantization model loading
|
7 |
+
bitsandbytes # for quantizing models (less storage space)
|
8 |
+
flash-attn --no-build-isolation # for faster attention mechanism = faster LLM inference
|
9 |
+
nltk
|
10 |
+
spacy
|