Deploying an Agent to AWS Lambda
We start from the FastAPI service we deployed to Railway in the previous workshop. We strip out FastAPI and swap it for a custom AWS Lambda runtime. The runtime handles both the static frontend and the streaming agent API. We deploy one container image as a Lambda Function URL with SSE streaming.
A coding agent (Codex) does most of the code-writing, and the exact prompts I used are quoted verbatim.
This was a freestyle session, so it also surfaces a fair amount of meta-discussion. We cover how to work with agents, when to trust them, and when to slow down and read the code.
Links
These materials are related:
The shift versus the previous workshop
Here's where Lambda fits in the request path:
The agent loop, the search tool, the renderer abstraction, and the frontend are unchanged from the previous workshop.
We change the web layer and the deployment pipeline:
- FastAPI is gone. A custom Lambda runtime (
backend/lambda_runtime.py) handles routing, static file serving, and SSE streaming directly against the Lambda Runtime API. - The Dockerfile is rebased on
public.ecr.aws/lambda/python:3.14instead ofpython:3.14-slim. - The
./deploy.shscript handles deployment. It builds a container image and pushes it to ECR. Then it deploys a CloudFormation stack that creates the Lambda function and a Function URL withRESPONSE_STREAMinvoke mode. - Railway and the GitHub Actions promotion workflow are gone.
Moving to Lambda changes what you pay for. With Railway or Render you pay for a server that has to be up all the time. With a Lambda Function URL you only pay per invocation, which fits tools and small agents that run occasionally.
Extra material
Additional pages outside the main flow:
- Appendix: isolating the AWS environment - how to spin up an isolated AWS sub-account, mint short-lived credentials, and ship them to the box that runs the agent. This step links to the reproducible scripts in aws-account/.
Upgrade to Basic to access this workshop
- Full workshop overview
- Complete page list
- Step-by-step tutorial
- Cancel anytime
Tutorial pages
- Overview and setup
- Replace FastAPI with Lambda
- The custom Lambda runtime
- Routing, streaming, and static files
- Dockerize on the Lambda Python image
- Local testing with the Runtime Interface Emulator
- deploy.sh and the deploy scripts
- Things that broke during the first deploy
- Local dev without rebuilding the image
- Organize the repo and publish
- Deferred items
- Q&A: side discussions
- Appendix: file inventory
- Appendix: isolating the AWS environment
More from AI Shipping Labs
AI Voice Coach with ElevenLabs
In this workshop we build Luma, a voice coach for rehearsing difficult conversations. You talk, and the coach walks you through Nonviolent Communication. By the end, a tangled con…
July 22, 2026
What to Expect in an AI Engineering Hiring Manager Interview
A practical guide to project deep dives, Python exercises, unfamiliar tasks, and the evidence hiring managers look for in AI engineering interviews.
July 22, 2026
Tailor Your CV for AI Engineering Roles
In this workshop we take a CV that's not focused on AI engineering roles and make it more relevant. We build a pipeline where: a renderer turns YAML into Harvard-style CVs we take…
July 8, 2026