07Codex07 commited on
Commit
26cb2a5
·
1 Parent(s): 6b97903

Add all required dependencies for backend

Browse files
Files changed (1) hide show
  1. requirements.txt +20 -13
requirements.txt CHANGED
@@ -1,13 +1,20 @@
1
- fastapi
2
- uvicorn
3
- python-dotenv
4
- langchain
5
- langchain-community
6
- langchain-groq
7
- sentence-transformers
8
- faiss-cpu
9
- tiktoken
10
- rank-bm25
11
- pypdf
12
- unstructured
13
- gradio
 
 
 
 
 
 
 
 
1
+ # --- Core backend ---
2
+ fastapi==0.110.0
3
+ uvicorn==0.29.0
4
+ python-dotenv==1.0.1
5
+
6
+ # --- LangChain stack (old structure compatible with your retriever) ---
7
+ langchain==0.1.16
8
+ langchain-community==0.0.32
9
+ langchain-groq==0.0.2
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
+ # --- PDF + text processing ---
16
+ pypdf==3.17.1
17
+ unstructured==0.10.30
18
+
19
+ # --- Optional frontend for testing ---
20
+ gradio==4.37.2