Get Test Run Results
get_test_run_resultsRetrieve test run results by ID or name, including aggregate metrics and per-row check scores. Optionally include full conversation transcripts and paginate large result sets.
Instructions
Load the results of a specific test run.
Look up by test run ID (UUID) or by name (returns the most recent run
matching that name). Returns aggregate metrics and per-row check scores.
By default, conversation transcripts (model_input/model_result) are
excluded to keep responses concise. Set include_transcripts=True to
include full transcripts. Use get_conversation_transcript to inspect
a single conversation's transcript without loading all of them.
Supports pagination via limit and offset for large result sets.
Args:
test_run_id: The UUID of the test run. Takes precedence over name.
name: The name of the test run. Returns the most recent match.
include_transcripts: Include full model_input and model_result in
each data point. Defaults to False (scores only). Set True for
full conversation transcripts.
limit: Maximum number of data points to return. 0 (default) returns
all data points. Use with offset for pagination.
offset: Number of data points to skip. Defaults to 0.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| limit | No | ||
| offset | No | ||
| test_run_id | No | ||
| include_transcripts | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |