Update requirements.txt
Browse files- requirements.txt +22 -35
requirements.txt
CHANGED
@@ -1,35 +1,22 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
arxiv
|
24 |
-
wikipedia
|
25 |
-
mysql-connector-python
|
26 |
-
SQLAlchemy
|
27 |
-
validators==0.28.1
|
28 |
-
youtube_transcript_api
|
29 |
-
unstructured
|
30 |
-
pytube
|
31 |
-
numexpr
|
32 |
-
huggingface_hub
|
33 |
-
Sympy
|
34 |
-
PyPDF2
|
35 |
-
streamlit
|
|
|
1 |
+
# Core dependencies
|
2 |
+
huggingface_hub>=0.19.0
|
3 |
+
requests>=2.31.0
|
4 |
+
|
5 |
+
# Framework (choose one based on your app)
|
6 |
+
streamlit==1.32.0
|
7 |
+
# gradio==4.19.2
|
8 |
+
# fastapi==0.109.0
|
9 |
+
|
10 |
+
# Data processing
|
11 |
+
numpy>=1.24.0
|
12 |
+
pandas>=2.0.0
|
13 |
+
|
14 |
+
# ML/AI libraries (as needed)
|
15 |
+
transformers>=4.37.0
|
16 |
+
torch>=2.1.0
|
17 |
+
# tensorflow>=2.15.0
|
18 |
+
# scikit-learn>=1.3.0
|
19 |
+
|
20 |
+
# Additional utilities
|
21 |
+
tqdm>=4.66.0
|
22 |
+
pillow>=10.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|