Fred808 commited on
Commit
61f7cb5
·
verified ·
1 Parent(s): 3f14bfe

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +38 -0
requirements.txt ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ fastapi
3
+ uvicorn
4
+
5
+ # Database and ORM
6
+ asyncpg>=0.27.0
7
+ sqlalchemy>=1.4.47
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
36
+
37
+ textblob
38
+ python-multipart