codelion commited on
Commit
7783c17
·
verified ·
1 Parent(s): 19d4c2e

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +33 -18
requirements.txt CHANGED
@@ -1,20 +1,35 @@
1
- langchain-community==0.0.20
2
- langchain==0.1.7
3
- Markdown==3.4.3
4
- openai==0.27.6
5
- pdf2image==1.16.3
6
- pypdf==3.8.1
7
- streamlit==1.31.0
8
- StrEnum==0.4.10
9
- supabase==1.2.0
10
- tiktoken==0.4.0
11
- unstructured==0.6.5
12
- anthropic==0.2.8
13
- fastapi==0.95.2
14
- python-multipart==0.0.6
15
- uvicorn==0.22.0
 
 
 
 
 
 
 
 
 
 
 
16
  docx2txt==0.8
 
 
 
 
 
 
17
  st-login-form==0.2.1
18
- huggingface_hub==0.15.1
19
- transformers==4.21.0
20
- sentence-transformers==2.2.2
 
1
+ # Core packages
2
+ streamlit==1.39.0
3
+ anthropic==0.40.0
4
+ openai==1.54.0
5
+
6
+ # LangChain (latest versions)
7
+ langchain==0.3.7
8
+ langchain-community==0.3.7
9
+ langchain-huggingface==0.1.2
10
+ langchain-openai==0.2.8
11
+
12
+ # Embeddings and ML
13
+ sentence-transformers==3.3.0
14
+ transformers==4.46.0
15
+ torch>=2.0.0
16
+
17
+ # Database and utilities
18
+ supabase==2.9.1
19
+ tiktoken==0.8.0
20
+
21
+ # Document processing
22
+ pypdf==5.1.0
23
+ pdf2image==1.17.0
24
+ python-multipart==0.0.12
25
+ Markdown==3.7
26
+ unstructured==0.16.9
27
  docx2txt==0.8
28
+
29
+ # Web framework
30
+ fastapi==0.115.6
31
+ uvicorn==0.32.1
32
+
33
+ # UI components
34
  st-login-form==0.2.1
35
+ StrEnum==0.4.15