07Codex07 commited on
Commit
f9e1938
·
1 Parent(s): f3d2e00

Add all required dependencies for backend

Browse files
Files changed (1) hide show
  1. requirements.txt +5 -2
requirements.txt CHANGED
@@ -3,7 +3,7 @@ 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.1.0
@@ -12,9 +12,12 @@ 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
 
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
 
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==4.37.2