rdune71 commited on
Commit
b4feac3
·
1 Parent(s): 0194326

Refactor project structure, implement config singleton pattern, enhance Redis connection handling

Browse files
Files changed (2) hide show
  1. core/__init__.py +1 -0
  2. requirements.txt +21 -13
core/__init__.py ADDED
@@ -0,0 +1 @@
 
 
1
+ # Core package initialization
requirements.txt CHANGED
@@ -1,13 +1,21 @@
1
- streamlit==1.24.0
2
- fastapi==0.95.0
3
- uvicorn==0.21.1
4
- redis==5.0.3
5
- python-dotenv==1.0.0
6
- openai==1.35.6
7
- tavily-python>=0.1.0,<1.0.0
8
- requests==2.31.0
9
- docker==6.1.3
10
- pygame==2.5.2
11
- # Add these for enhanced functionality
12
- pydantic==1.10.7
13
- typing-extensions>=4.5.0
 
 
 
 
 
 
 
 
 
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