07Codex07 commited on
Commit
3c9de84
·
1 Parent(s): 3065bcb

Add all required dependencies for backend

Browse files
Files changed (1) hide show
  1. requirements.txt +8 -15
requirements.txt CHANGED
@@ -1,23 +1,16 @@
1
- # --- Core backend ---
2
- fastapi==0.115.0
3
  uvicorn==0.29.0
4
  python-dotenv==1.0.1
5
-
6
- # --- LangChain stack ---
7
  langchain==0.1.16
8
  langchain-community==0.0.32
9
- langchain-groq==0.1.0
10
  sentence-transformers==2.2.2
11
  faiss-cpu==1.7.4
12
  tiktoken==0.7.0
13
  rank-bm25==0.2.2
14
-
15
- # --- Fix for sentence-transformers dependency ---
16
- huggingface-hub==0.24.6
17
-
18
- # --- PDF + text processing ---
19
- pypdf==3.17.1
20
- unstructured==0.10.30
21
-
22
- # --- Optional frontend for local tests ---
23
- gradio==5.49.1
 
1
+ fastapi==0.115.2
 
2
  uvicorn==0.29.0
3
  python-dotenv==1.0.1
 
 
4
  langchain==0.1.16
5
  langchain-community==0.0.32
6
+ langchain-groq==0.3.0
7
  sentence-transformers==2.2.2
8
  faiss-cpu==1.7.4
9
  tiktoken==0.7.0
10
  rank-bm25==0.2.2
11
+ pypdf==4.2.0
12
+ unstructured==0.14.5
13
+ huggingface-hub==0.20.3
14
+ gradio==5.49.1
15
+ pandas==2.3.3
16
+ numpy