Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +8 -11
requirements.txt
CHANGED
|
@@ -1,20 +1,17 @@
|
|
|
|
|
| 1 |
gradio==4.44.0
|
| 2 |
yfinance==0.2.28
|
| 3 |
requests==2.31.0
|
| 4 |
pandas==2.1.4
|
| 5 |
-
numpy==1.24.
|
| 6 |
aiohttp==3.9.1
|
| 7 |
beautifulsoup4==4.12.2
|
| 8 |
-
SpeechRecognition==3.10.0
|
| 9 |
-
pyttsx3==2.90
|
| 10 |
plotly==5.17.0
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
sentence-transformers==2.2.2
|
| 13 |
faiss-cpu==1.7.4
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
nltk==3.8.1
|
| 18 |
-
asyncio==3.4.3
|
| 19 |
-
pyaudio==0.2.11
|
| 20 |
-
packaging==23.2
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
gradio==4.44.0
|
| 3 |
yfinance==0.2.28
|
| 4 |
requests==2.31.0
|
| 5 |
pandas==2.1.4
|
| 6 |
+
numpy==1.24.4
|
| 7 |
aiohttp==3.9.1
|
| 8 |
beautifulsoup4==4.12.2
|
|
|
|
|
|
|
| 9 |
plotly==5.17.0
|
| 10 |
+
|
| 11 |
+
# Optional AI/ML dependencies (will gracefully fallback if not available)
|
| 12 |
+
google-generativeai==0.3.2
|
| 13 |
sentence-transformers==2.2.2
|
| 14 |
faiss-cpu==1.7.4
|
| 15 |
+
|
| 16 |
+
# Basic utilities
|
| 17 |
+
python-dateutil==2.8.2
|
|
|
|
|
|
|
|
|
|
|
|