Create requirements.txt
Browse files- requirements.txt +21 -0
requirements.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies for Synapse-Base Inference
|
| 2 |
+
|
| 3 |
+
# Web framework
|
| 4 |
+
fastapi==0.109.0
|
| 5 |
+
uvicorn[standard]==0.27.0
|
| 6 |
+
|
| 7 |
+
# ONNX Runtime (CPU 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 |
+
python-multipart==0.0.6
|
| 21 |
+
pydantic==2.5.3
|