Step 1: Containerizing Guardrails API
Updating Guardrails config + guard/validator definitions
Create a working directory for your Guardrails deployment and define your Guards in aconfig.py. Each Guard is a Guard object built from validators installed from PyPI.
config.py for a chatbot guard using DetectPII:
.use(...) on your Guard. For example, to also fix location entities alongside person:
config.py and a requirements.txt (or equivalent) in source control so CI/CD, targeted deployments, and rollback are reproducible. A minimal requirements.txt:
Container build
Building a guard can be achieved with docker. An example build file is below. It is recommended to keep the Dockerfile also in source control. Create aDockerfile in a new working directory guardrails (or alternative).
Step 2: Verification
Verification of guards should be done as programmatically as possible. Here is an example pytest that can test server based guards in a variety of ways. It is configured to run against the container above and do some basic tests around validation and integration with an LLM.Step 3: Deploying infrastructure
By leveraging AWS ECS we can scale to handle increasing workloads by scaling the number of containers. Furthermore we can leverage a streamlined deployment process using ECS with rolling updates. We can now deploy the infrastructure needed for AWS ECS which includes:- Networking Resources (VPC, Load Balancer, Security Groups, Subnets, etc)
- IAM Roles & Policies (ECS Task & Execution Role)
- ECS Cluster (ECS Service, Task, Task Definition)
Each can be configured based on your requirements.
desired_count corresponds to the number of containers that should always be running. Alternatively one can configure a minimum & maximum count with some autoscaling policy. It is initially set to 0 since we have yet to upload the container to the AWS container registry (ECR).Step 4: Deploying Guardrails API
Manual
Run the following to build your container and push up to ECR:Github Actions
Deployment can vary depending on hosting infrastructure and environment. For AWS we recommend using a service like ECS and triggering no downtime rolling deployments via something like Github actions. See the full Github Actions workflow example in the Guardrails repository.Deployment/Update frequency
Generally guardrails core lib and validators are updated on a very regular basis (weekly) with bug fixes, security fixes and non-breaking feature updates. Every release is accompanied by release notes here. Large releases with breaking changes happen at a slower cadence and will be accompanied with migration guides. It is recommended to update on a semi-regular basis utilizing a CI/CD flow like the one outlined in this document. With the recommended steps below:- Update the guardrails version tag
- Follow any migration guides that need to be applied
- Run build locally and verify tests pass
- Commit updates to source control
- Source control changes are approved and merged to main
- Github action triggers and updates are deployed
Remote inference
Validators that use LLMs and other models can often gain a large performance boost from running their inferences in batches on dedicated hardware with dedicated accelerators. It is also often advantageous to scale this infrastructure independently of the core guards and validators. Guardrails validators can run their ML models on a remote endpoint that you host yourself — point a validator at it with thevalidation_endpoint argument. (Guardrails’ previously free-hosted inference endpoints are being discontinued on August 6, 2026.)
See more general information about remote inference here.
Using with SDK
You should be able to get the URL for your Guardrails API using:GUARDRAILS_BASE_URL the SDK will be able to use this as a backend for running validations.