Update requirements.txt
Browse files- requirements.txt +20 -3
requirements.txt
CHANGED
|
@@ -1,3 +1,20 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Minimal Requirements for Running TexQL App (CPU-only)
|
| 2 |
+
# Use this for app.py, demo.py, and data_generation.py
|
| 3 |
+
|
| 4 |
+
# Core Dependencies
|
| 5 |
+
torch>=2.0.0 # CPU version
|
| 6 |
+
transformers>=4.36.0
|
| 7 |
+
streamlit>=1.29.0
|
| 8 |
+
|
| 9 |
+
# Data Generation
|
| 10 |
+
pandas>=2.1.0
|
| 11 |
+
numpy>=1.26.0
|
| 12 |
+
faker>=22.0.0
|
| 13 |
+
|
| 14 |
+
# Utilities
|
| 15 |
+
tqdm>=4.66.0
|
| 16 |
+
python-dotenv>=1.0.0
|
| 17 |
+
|
| 18 |
+
# Optional (if you want to use databases)
|
| 19 |
+
# pymongo>=4.6.0
|
| 20 |
+
# sqlalchemy>=2.0.0
|