fruitpicker01 commited on
Commit
daf8aad
·
verified ·
1 Parent(s): 47cb303

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +10 -7
requirements.txt CHANGED
@@ -1,14 +1,17 @@
1
- # HuggingFace Spaces requirements for Lightweight RAG Demo
2
- # Optimized for fast deployment without heavy dependencies
3
 
4
  # Core web framework
5
- gradio==5.35.0
6
 
7
- # OpenAI API for LLM
8
  openai>=1.0.0
9
 
10
- # Scientific libraries (minimal)
 
 
 
11
  numpy>=1.24.0
12
 
13
- # Utilities
14
- python-dotenv>=1.0.0
 
1
+ # HuggingFace Spaces requirements for Vector RAG Demo
2
+ # Vector search with FAISS and PDF processing
3
 
4
  # Core web framework
5
+ gradio>=4.0.0
6
 
7
+ # OpenAI API for embeddings and LLM
8
  openai>=1.0.0
9
 
10
+ # Vector search
11
+ faiss-cpu>=1.7.0
12
+
13
+ # Scientific libraries
14
  numpy>=1.24.0
15
 
16
+ # PDF processing for parent-page enrichment
17
+ PyMuPDF>=1.23.0