I know this is an oft-asked question. Just curious if you have ideas for my specific use case.
I’m deploying a Python backend. The packages are fairly heavy (LLM use case), so if I bundle all my requirements together it exceeds the 250 MB limit. I got around this temporarily by splitting my BE into two serverless functions: one for my server and one for my LLM uses.
When I actually call the LLM functions from my server code, it starts failing with the errors reading “Module not found”, where the modules are the LLM packages that I imported into my LLM serverless function.
I think I might not be understanding serverless functions fundamentally, but is there a way to split up the functions such that one serverless function only depends on its own packages, and can make calls to another without having to import everything?
My vercel.json if helpful
"builds": [
{
"src": "api/main.py",
"use": "@vercel/python",
"config": {
"installCommand": "pip install -r requirements.txt"
}
},
{
"src": "api/ai_framework/__init__.py",
"use": "@vercel/python",
"config": {
"installCommand": "pip install -r requirements-ai.txt"
}
},
{
"src": "package.json",
"use": "@vercel/static-build",
"config": {
"distDir": "dist"
}
}
],