Fred808 commited on
Commit
79f1ae9
·
verified ·
1 Parent(s): 516168a

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +33 -7
requirements.txt CHANGED
@@ -1,9 +1,35 @@
 
 
1
  uvicorn
2
- transformers
3
- torch
4
- scipy
5
- fastapi
6
- riffusion
 
 
 
 
 
 
 
 
 
7
  Pillow
8
- requests
9
- python-multipart
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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