Using Templates
LaunchGate includes pre-built eval suite templates to help you get started quickly. Templates come with pre-configured cases and scorers for common use cases.
Available templates
Browse templates in the dashboard or via the API:
curl https://api.launchgate.ai/v1/templatesTemplates are public and don’t require authentication.
Creating a suite from a template
Dashboard
- Navigate to your project
- Click New Suite → From Template
- Select a template and customise the name
- The suite is created with all cases and scorers pre-configured
API
curl -X POST https://api.launchgate.ai/v1/projects/my-project/suites/from-template \
-H "Authorization: Bearer $LAUNCHGATE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"template_slug": "rag-faithfulness",
"name": "My RAG Checks"
}'Customising templates
After creating a suite from a template, you own it — you can:
- Add cases — add new checks specific to your needs
- Remove cases — deactivate or delete cases that don’t apply
- Modify thresholds — adjust pass thresholds to match your quality bar
- Change scorers — swap in different scorer configurations
- Update the suite threshold — change the overall pass/fail threshold
Templates are a starting point, not a constraint. Customise freely after creation.
Template structure
Each template includes:
- Suite configuration — name, description, pass threshold
- Cases — pre-defined test cases with inputs and expected values
- Scorers — pre-configured scorer definitions
Templates are seeded at deploy time and maintained by the LaunchGate team. They cannot be modified by users, but new templates are added with each release.
Last updated on