Skip to main content

Serverless Deployment

Deploy TealTiger SDKs on serverless platforms for cost-effective, auto-scaling AI agent deployments.
This page is under construction. Full serverless deployment guides coming in v1.1.0.

Supported Platforms

  • AWS Lambda - Container image support
  • Google Cloud Run - Fully managed containers
  • Azure Functions - Custom container support
  • Vercel - Edge functions
  • Cloudflare Workers - Edge compute

Coming Soon

  • AWS Lambda deployment with container images
  • Google Cloud Run configuration
  • Azure Functions custom containers
  • Cold start optimization
  • Cost optimization strategies
  • Environment variable management
  • Secrets management

Quick Preview

AWS Lambda (Container)

FROM ghcr.io/tealtiger/python-sdk:alpine

COPY app.py ${LAMBDA_TASK_ROOT}

CMD ["app.handler"]

Google Cloud Run

gcloud run deploy tealtiger-app \
  --image ghcr.io/tealtiger/python-sdk:latest \
  --platform managed \
  --region us-central1 \
  --allow-unauthenticated

For now, see the Docker guide for container basics.