D0nG4667 commited on
Commit
309ae15
·
1 Parent(s): fdadf61

feat: Add Vercel deployment configuration for ML and DL APIs

Browse files
Files changed (2) hide show
  1. requirements.txt +14 -0
  2. vercel.json +14 -0
requirements.txt ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ fastapi[standard]>=0.128.1
2
+ dython>=0.7.12
3
+ fastparquet>=2025.12.0
4
+ imbalanced-learn>=0.14.1
5
+ joblib>=1.5.3
6
+ numpy>=2.3.5
7
+ pandas>=2.3.3
8
+ plotly>=6.5.1
9
+ pyarrow>=22.0.0
10
+ python-dotenv>=1.2.1
11
+ scikit-learn>=1.8.0
12
+ shap>=0.49.1
13
+ xgboost>=3.1.3
14
+ kaleido>=1.2.0
vercel.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "builds": [
3
+ {
4
+ "src": "app.py",
5
+ "use": "@vercel/python"
6
+ }
7
+ ],
8
+ "routes": [
9
+ {
10
+ "src": "/(.*)",
11
+ "dest": "app.py"
12
+ }
13
+ ]
14
+ }