/ index.py
index.py
1  """
2  Vercel serverless function entry point for FastAPI.
3  When framework is set to FastAPI in Vercel dashboard, this file should export the app.
4  """
5  from app.main import app
6  
7  # Export the app - Vercel with FastAPI framework preset should handle this
8  handler = app
9