Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +18 -5
requirements.txt
CHANGED
|
@@ -1,8 +1,21 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
|
|
|
|
|
|
| 3 |
openai>=1.0.0
|
| 4 |
python-dotenv>=1.0.0
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python Version: 3.9+
|
| 2 |
+
|
| 3 |
+
# Core Dependencies
|
| 4 |
+
streamlit>=1.28.0
|
| 5 |
openai>=1.0.0
|
| 6 |
python-dotenv>=1.0.0
|
| 7 |
|
| 8 |
+
# Audio Processing
|
| 9 |
+
pyaudio>=0.2.14
|
| 10 |
+
|
| 11 |
+
# NLP and Sentiment Analysis
|
| 12 |
+
transformers>=4.30.0
|
| 13 |
+
torch>=2.0.0
|
| 14 |
+
accelerate>=0.20.0
|
| 15 |
+
|
| 16 |
+
# Data Processing and Visualization
|
| 17 |
+
pandas>=2.0.0
|
| 18 |
+
plotly>=5.14.0
|
| 19 |
+
|
| 20 |
+
# Optional: For better performance
|
| 21 |
+
watchdog>=3.0.0
|