garyd1 commited on
Commit
d5f7064
·
verified ·
1 Parent(s): 27dfce3

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +21 -13
requirements.txt CHANGED
@@ -1,14 +1,22 @@
1
- streamlit
2
- pandas
3
- openai
4
- torch
5
- matplotlib
6
- transformers
7
- python-dotenv
8
- anthropic
9
  re
10
- cryptography
11
- openpyxl
12
- tabulate
13
- streamlit-authenticator
14
- flask-limiter
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ streamlit==1.27.2
3
+ pandas==2.2.0
4
+ numpy==1.26.4
5
+ python-dotenv==1.0.1
6
+ matplotlib==3.8.2
 
 
7
  re
8
+
9
+ # LLMs & AI models
10
+ openai==1.3.6
11
+ anthropic==0.3.4
12
+ torch==2.1.0
13
+ transformers==4.37.0
14
+
15
+ # Excel & CSV support
16
+ openpyxl==3.1.2
17
+ tabulate==0.9.0
18
+
19
+ # Security & Authentication
20
+ cryptography==42.0.5
21
+ streamlit-authenticator==0.2.2
22
+ flask-limiter==3.5.0