Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +21 -13
requirements.txt
CHANGED
@@ -1,14 +1,22 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
python-dotenv
|
8 |
-
anthropic
|
9 |
re
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|