Chia Woon Yap commited on
Commit
42c8ccb
·
verified ·
1 Parent(s): 9714cd4

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +33 -6
requirements.txt CHANGED
@@ -1,6 +1,33 @@
1
- langchain
2
- langchain-chroma
3
- chromadb
4
- gradio==5.24.0
5
- uvicorn
6
- spaces
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ gradio==4.24.0
3
+ numpy==1.24.3
4
+ transformers==4.36.2
5
+ torch==2.1.2
6
+
7
+ # Groq and LangChain
8
+ groq==0.4.1
9
+ langchain-groq==0.1.0
10
+ langchain-community==0.0.29
11
+ langchain-core==0.1.33
12
+ langchain-text-splitters==0.0.1
13
+
14
+ # Document processing
15
+ pymupdf==1.23.8
16
+ python-docx==1.1.0
17
+ python-pptx==0.6.23
18
+ chardet==5.2.0
19
+
20
+ # Audio processing
21
+ gtts==2.5.1
22
+ soundfile==0.12.1
23
+
24
+ # Embeddings
25
+ sentence-transformers==2.2.2
26
+
27
+ # Vector database
28
+ chromadb==0.4.22
29
+
30
+ # Additional utilities
31
+ pillow==10.1.0
32
+ requests==2.31.0
33
+ urllib3==1.26.18