Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +27 -0
requirements.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core RAG components
|
2 |
+
langchain
|
3 |
+
langchain-community
|
4 |
+
langchain-core
|
5 |
+
|
6 |
+
# FAISS for vector store
|
7 |
+
faiss-cpu
|
8 |
+
|
9 |
+
# Embeddings and models
|
10 |
+
sentence-transformers
|
11 |
+
transformers
|
12 |
+
torch
|
13 |
+
huggingface-hub
|
14 |
+
|
15 |
+
# PDF parsing and image extraction
|
16 |
+
unstructured[pdf]
|
17 |
+
pypdf
|
18 |
+
|
19 |
+
# Image processing for BLIP
|
20 |
+
Pillow
|
21 |
+
opencv-python
|
22 |
+
|
23 |
+
# Gradio UI
|
24 |
+
gradio
|
25 |
+
|
26 |
+
# Utilities
|
27 |
+
tqdm
|