Guardrails.ai
Note: Guardrails is an alpha release, so expect sharp edges and bugs.
🛤️ What is Guardrails?
Guardrails is a Python package that lets a user add structure, type and quality guarantees to the outputs of large language models (LLMs). Guardrails:
- does pydantic-style validation of LLM outputs. This includes semantic validation such as checking for bias in generated text, checking for bugs in generated code, etc.
- takes corrective actions (e.g. reasking LLM) when validation fails,
- enforces structure and type guarantees (e.g. JSON).
🚒 Under the hood
Guardrails provides a format (.rail
) for enforcing a specification on an LLM output, and a lightweight wrapper around LLM API calls to implement this spec.
rail
(Reliable AI markup Language) files for specifying structure and type information, validators and corrective actions over LLM outputs.gd.Guard
wraps around LLM API calls to structure, validate and correct the outputs.
graph LR
A[Create `RAIL` spec] --> B["Initialize `guard` from spec"];
B --> C["Wrap LLM API call with `guard`"];
Check out the Getting Started guide to learn how to use Guardrails.
📜 RAIL
spec
At the heart of Guardrails is the rail
spec. rail
is intended to be a language-agnostic, human-readable format for specifying structure and type information, validators and corrective actions over LLM outputs.
rail
is a flavor of XML that lets users specify:
- The expected structure and types of the LLM output (e.g. JSON),
- The quality criteria for the output to be considered valid (e.g. generated text should be bias-free, generated code should be bug-free),
- Corrective actions to be taken if the output is invalid (e.g. reask the LLM, filter out the invalid output, etc.)
To learn more about the rail
spec and the design decisions behind it, check out the Rail Specification. To learn how to write your own rail
spec, check out specifying output
elements in RAIL.
📍 Roadmap
- Adding more examples, new use cases and domains
- Adding integrations with langchain, gpt-index, minichain, manifest
- Expanding validators offering
- More compilers from
.rail
-> LLM prompt (e.g..rail
-> TypeScript) - Informative logging
- Improving reasking logic
- A guardrails.js implementation
- VSCode extension for
.rail
files - Next version of
.rail
format - Add more LLM providers