Tool details
| Field | Value |
|---|---|
| Name | get_eval_run_report |
| Group | Evals |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"minLength": 1,
"description": "Project identifier or slug that scopes the tool call."
},
"eval_id": {
"type": "string",
"minLength": 1,
"description": "Provide the eval id."
},
"run_id": {
"type": "string",
"minLength": 1,
"description": "Run identifier that scopes the request."
}
},
"required": [
"eval_id",
"run_id"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Input schema for the get_eval_run_report tool."
}
Output schema
output-schema.json
{
"type": "object",
"properties": {
"kind": {
"type": "string",
"const": "eval-report",
"description": "The kind returned by the tool."
}
},
"required": [
"kind"
],
"additionalProperties": true,
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Structured result returned by the get_eval_run_report tool."
}