AWS TypeScript LangServe example
A minimal Langserve AWS TypeScript Pulumi program
This example lives in the pulumi/examples repository. Check out just this directory to use it:
git clone --filter=blob:none --sparse https://github.com/pulumi/examples pulumi-examplesgit -C pulumi-examples sparse-checkout set aws-ts-langservecd pulumi-examples/aws-ts-langserveThis example demonstrates how to deploy a simple LangServe app using Pulumi in TypeScript.
Prerequisites#
- Install Pulumi
- Configure AWS credentials
- Install Node.js
- Install Docker
- Install the AWS CLI
- Install the LangChain CLI
Deploying the example#
-
Create a new stack:
Terminal window pulumi stack init dev -
Set the AWS region to deploy into:
Terminal window pulumi config set aws:region us-west-2 -
Set your OpenAI API key:
Terminal window pulumi config set open-api-key --secret # Enter your OpenAI API key -
Install dependencies:
Terminal window npm install -
Deploy the stack. This will show you a preview of the resources that will be created. After reviewing the changes, you will be prompted to continue.
Terminal window pulumi upThe whole deployment process will take a couple of minutes. Once it’s done, you will see the URL of your LangServe app in the output.
Outputs:url: "http://<dns>.elb.amazonaws.com"Resources:+ 27 createdYou can now access the LangServe playground by adding
/openai/playgroundto the URL you got from the output.[!NOTE] It may take a few minutes for the load balancer to be ready to accept requests. If you see a 503 error, wait a few minutes and try again.
Cleaning up#
To clean up the resources created by this example, run:
pulumi destroypulumi stack rm