Update requirements.txt
Browse files- requirements.txt +33 -7
requirements.txt
CHANGED
@@ -1,9 +1,35 @@
|
|
|
|
|
|
1 |
uvicorn
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
Pillow
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
fastapi
|
3 |
uvicorn
|
4 |
+
|
5 |
+
# Database and ORM
|
6 |
+
sqlalchemy
|
7 |
+
asyncpg
|
8 |
+
aiosqlite
|
9 |
+
|
10 |
+
# HTTP requests
|
11 |
+
requests
|
12 |
+
httpx
|
13 |
+
|
14 |
+
# OpenAI and NVIDIA LLM integration
|
15 |
+
openai
|
16 |
+
|
17 |
+
# Image processing and scraping
|
18 |
Pillow
|
19 |
+
beautifulsoup4
|
20 |
+
lxml
|
21 |
+
|
22 |
+
# Environment variables
|
23 |
+
python-dotenv
|
24 |
+
|
25 |
+
# Data validation and serialization
|
26 |
+
pydantic
|
27 |
+
|
28 |
+
# Utilities
|
29 |
+
python-dateutil
|
30 |
+
pybase64
|
31 |
+
|
32 |
+
# Testing and development
|
33 |
+
pytest
|
34 |
+
pytest-asyncio
|
35 |
+
httpx
|