Rafs-an09002 commited on
Commit
89b922d
·
verified ·
1 Parent(s): 672d6de

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +13 -2
requirements.txt CHANGED
@@ -1,9 +1,20 @@
1
- # Nexus-Nano Minimal Dependencies
2
 
 
3
  fastapi==0.109.0
4
  uvicorn[standard]==0.27.0
 
 
5
  onnxruntime==1.17.0
 
 
6
  python-chess==1.999
 
 
7
  numpy==1.24.3
 
 
8
  huggingface-hub==0.20.3
9
- pydantic==2.5.3
 
 
 
1
+ # Nexus-Nano Dependencies (Minimal)
2
 
3
+ # Web framework
4
  fastapi==0.109.0
5
  uvicorn[standard]==0.27.0
6
+
7
+ # ONNX Runtime (CPU only, optimized)
8
  onnxruntime==1.17.0
9
+
10
+ # Chess library
11
  python-chess==1.999
12
+
13
+ # Numerical computing
14
  numpy==1.24.3
15
+
16
+ # Model download
17
  huggingface-hub==0.20.3
18
+
19
+ # Utilities
20
+ pydantic==2.5.3