Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +46 -30
requirements.txt
CHANGED
|
@@ -1,30 +1,46 @@
|
|
| 1 |
-
Flask
|
| 2 |
-
Flask
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
langchain-groq
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Flask and WebSocket dependencies
|
| 2 |
+
Flask>=3.0.0,<4.0.0
|
| 3 |
+
Flask-SocketIO>=5.3.0,<6.0.0
|
| 4 |
+
python-socketio>=5.11.0,<6.0.0
|
| 5 |
+
|
| 6 |
+
# LangChain and Groq integration
|
| 7 |
+
langchain>=0.1.20,<0.2.0
|
| 8 |
+
langchain-groq>=0.3.0,<1.0.0
|
| 9 |
+
groq>=0.11.0,<1.0.0
|
| 10 |
+
|
| 11 |
+
# Database dependencies
|
| 12 |
+
psycopg2-binary>=2.9.0,<3.0.0
|
| 13 |
+
SQLAlchemy>=2.0.0,<3.0.0
|
| 14 |
+
Flask-SQLAlchemy>=3.1.0,<4.0.0
|
| 15 |
+
|
| 16 |
+
# Redis for caching and session management
|
| 17 |
+
redis>=5.0.0,<6.0.0
|
| 18 |
+
Flask-Session>=0.8.0,<1.0.0
|
| 19 |
+
|
| 20 |
+
# Environment and configuration
|
| 21 |
+
python-dotenv>=1.0.0,<2.0.0
|
| 22 |
+
|
| 23 |
+
# Utilities and helpers
|
| 24 |
+
python-dateutil>=2.8.0,<3.0.0
|
| 25 |
+
|
| 26 |
+
# Development and testing
|
| 27 |
+
pytest>=7.4.0,<8.0.0
|
| 28 |
+
pytest-asyncio>=0.21.0,<1.0.0
|
| 29 |
+
pytest-mock>=3.12.0,<4.0.0
|
| 30 |
+
coverage>=7.3.0,<8.0.0
|
| 31 |
+
|
| 32 |
+
# Security and validation
|
| 33 |
+
Werkzeug>=2.3.0,<3.0.0
|
| 34 |
+
marshmallow>=3.20.0,<4.0.0
|
| 35 |
+
Flask-Limiter>=3.5.0,<4.0.0
|
| 36 |
+
PyJWT>=2.8.0,<3.0.0
|
| 37 |
+
|
| 38 |
+
# Async support
|
| 39 |
+
eventlet>=0.33.0,<1.0.0
|
| 40 |
+
|
| 41 |
+
# System monitoring
|
| 42 |
+
psutil>=5.9.0,<6.0.0
|
| 43 |
+
|
| 44 |
+
# HTTP client for API calls
|
| 45 |
+
httpx>=0.25.0,<1.0.0
|
| 46 |
+
requests>=2.31.0,<3.0.0
|