MohamedFahim commited on
Commit
4d23537
·
verified ·
1 Parent(s): 6aef3db

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +26 -6
requirements.txt CHANGED
@@ -1,14 +1,34 @@
 
1
  fastapi>=0.115.2,<1.0
2
- uvicorn==0.30.1
3
  pydantic==2.7.1
 
 
 
4
  requests==2.32.2
5
  beautifulsoup4==4.12.3
 
 
6
  llama-index==0.10.55
7
- python-dotenv==1.0.1
8
- llama-index==0.10.55
9
- streamlit==1.30.0
10
- requests==2.32.2
11
  groq==0.20.0
 
 
 
 
 
 
 
 
 
12
  scikit-learn==1.6.1
 
 
 
13
  gradio==5.33.0
14
- supabase==2.15.2
 
 
 
 
 
 
 
1
+ # Core FastAPI and Web Framework
2
  fastapi>=0.115.2,<1.0
3
+ uvicorn[standard]==0.30.1
4
  pydantic==2.7.1
5
+ python-multipart==0.0.18
6
+
7
+ # HTTP and Web Scraping
8
  requests==2.32.2
9
  beautifulsoup4==4.12.3
10
+
11
+ # LLM and AI Libraries
12
  llama-index==0.10.55
 
 
 
 
13
  groq==0.20.0
14
+
15
+ # RAG and Document Processing (FIX FOR FITZ IMPORT ERROR)
16
+ PyMuPDF>=1.24.0
17
+ pymupdf4llm>=0.0.17
18
+ faiss-cpu>=1.8.0
19
+ sentence-transformers>=3.0.1
20
+ langchain-text-splitters>=0.3.9
21
+
22
+ # Data Processing and ML
23
  scikit-learn==1.6.1
24
+ numpy>=1.24.0,<2.0
25
+
26
+ # UI Framework
27
  gradio==5.33.0
28
+
29
+ # Storage and Database
30
+ supabase==2.15.2
31
+
32
+ # Utilities
33
+ python-dotenv==1.0.1
34
+ markdown>=3.6