NLP-Topic-Analysis-Apr-2026 / lambda_handler.py
cjen1008's picture
NLP Topic Analysis v0.0 (April 2026) — initial HF Space commit
a882be6
raw
history blame contribute delete
155 Bytes
"""AWS Lambda entry-point. Wraps the FastAPI app with Mangum."""
from mangum import Mangum
from api.main import app
handler = Mangum(app, lifespan="off")