Spaces:
Running
Running
Upload requirements.txt
#3
by
maghwa
- opened
- requirements.txt +19 -0
requirements.txt
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
pandas>=2.0.0
|
| 3 |
+
numpy>=1.24.0
|
| 4 |
+
|
| 5 |
+
# LLM APIs
|
| 6 |
+
anthropic>=0.28.0
|
| 7 |
+
openai>=1.0.0
|
| 8 |
+
google-generativeai>=0.3.0
|
| 9 |
+
|
| 10 |
+
# For local LLM (Ollama)
|
| 11 |
+
requests>=2.31.0
|
| 12 |
+
|
| 13 |
+
# Utilities
|
| 14 |
+
python-dateutil>=2.8.0
|
| 15 |
+
|
| 16 |
+
# Optional: for advanced preprocessing
|
| 17 |
+
scikit-learn>=1.3.0
|
| 18 |
+
scipy>=1.11.0
|
| 19 |
+
flask
|