hf-llm-api / vercel.json
Hansimov's picture
:hammer: [Test] Enable deployment in vercel
fdc9940
{
"builds": [
{
"src": "apis/chat_api.py",
"use": "@vercel/python"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/apis/chat_api.py"
}
],
"env": {
"APP_MODULE": "apis.chat_api:app"
}
}