Refactor project structure, implement config singleton pattern, enhance Redis connection handling
Browse files- core/__init__.py +1 -0
- requirements.txt +21 -13
core/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# Core package initialization
|
requirements.txt
CHANGED
|
@@ -1,13 +1,21 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
redis
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fastapi>=0.68.0
|
| 2 |
+
uvicorn>=0.15.0
|
| 3 |
+
python-dotenv>=0.19.0
|
| 4 |
+
redis>=4.0.0
|
| 5 |
+
requests>=2.25.0
|
| 6 |
+
pydantic>=1.8.0
|
| 7 |
+
python-multipart>=0.0.5
|
| 8 |
+
websockets>=10.0
|
| 9 |
+
numpy>=1.21.0
|
| 10 |
+
torch>=1.9.0
|
| 11 |
+
transformers>=4.21.0
|
| 12 |
+
huggingface-hub>=0.8.0
|
| 13 |
+
openai>=0.27.0
|
| 14 |
+
asyncio-mqtt>=0.11.0
|
| 15 |
+
paho-mqtt>=1.6.0
|
| 16 |
+
gTTS>=2.2.0
|
| 17 |
+
pygame>=2.0.0
|
| 18 |
+
geopy>=2.2.0
|
| 19 |
+
weather-api>=0.0.4
|
| 20 |
+
logging>=0.4.9.6
|
| 21 |
+
typing_extensions>=3.10.0
|