teszenofficial commited on
Commit
1537a14
·
verified ·
1 Parent(s): dde10d9

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +22 -5
requirements.txt CHANGED
@@ -1,5 +1,22 @@
1
- fastapi
2
- uvicorn
3
- torch
4
- sentencepiece
5
- huggingface_hub
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ fastapi==0.104.1
3
+ uvicorn[standard]==0.24.0
4
+ pydantic==2.5.0
5
+
6
+ # Machine Learning
7
+ torch==2.1.0
8
+ sentencepiece==0.1.99
9
+
10
+ # Model hosting
11
+ huggingface_hub==0.19.4
12
+
13
+ # Web Search capabilities
14
+ wikipedia==1.4.0
15
+ duckduckgo-search==4.1.1
16
+
17
+ # HTTP client for async requests
18
+ aiohttp==3.9.1
19
+
20
+ # Optional: Para mejorar rendimiento
21
+ # numpy==1.24.3
22
+ # regex==2023.10.3