github-actions[bot] commited on
Commit ·
0ab3e84
1
Parent(s): 913d2dd
🚀 Deploy from GitHub Actions - 2026-02-03 10:15:48
Browse files- environment.yml +27 -0
environment.yml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: wakee_api
|
| 2 |
+
channels:
|
| 3 |
+
- conda-forge
|
| 4 |
+
- defaults
|
| 5 |
+
dependencies:
|
| 6 |
+
- python=3.11
|
| 7 |
+
- numpy=1.26.3
|
| 8 |
+
- pillow=10.2.0
|
| 9 |
+
- pip
|
| 10 |
+
- pip:
|
| 11 |
+
# FastAPI
|
| 12 |
+
- fastapi==0.109.0
|
| 13 |
+
- uvicorn[standard]==0.27.0
|
| 14 |
+
- python-multipart==0.0.6
|
| 15 |
+
# HuggingFace
|
| 16 |
+
- huggingface-hub==0.20.3
|
| 17 |
+
# ML
|
| 18 |
+
- onnxruntime==1.17.0
|
| 19 |
+
- torch==2.1.2
|
| 20 |
+
- torchvision==0.16.2
|
| 21 |
+
# Database
|
| 22 |
+
- sqlalchemy==2.0.25
|
| 23 |
+
- psycopg2-binary==2.9.9
|
| 24 |
+
# Cloud
|
| 25 |
+
- boto3==1.34.34
|
| 26 |
+
# Utils
|
| 27 |
+
- python-dotenv==1.0.1
|