import sys import os # Add the parent directory to sys.path so Vercel can find the 'app' module sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from app.main import app # This file simply imports the FastAPI instance