CoolFace
Apppublic

PCGao/MatchAnything

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes
vercel.json19 linesDownload Raw Back to root
1{2    "builds": [3      {4        "src": "api/server.py",5        "use": "@vercel/python",6        "config": {7            "maxLambdaSize": "10gb",8            "runtime": "python3.10"9        }10      }11    ],12    "routes": [13      {14        "src": "/(.*)",15        "dest": "api/server.py"16      }17    ]18}19