Orq MCP is live: Use natural language to interrogate traces, spot regressions, and experiment your way to optimal AI configurations. Available in Claude Desktop, Claude Code, Cursor, and more. Start now →
Update an existing evaluator’s configuration, scoring criteria, or model settings. Modify evaluation parameters without creating a new version.
curl --request PATCH \
--url https://api.orq.ai/v2/evaluators/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "<string>",
"path": "Default",
"key": "<string>",
"description": "<string>",
"prompt": "<string>",
"output_type": "<string>",
"categories": [
"<string>"
],
"categorical_labels": [
{
"value": "<string>",
"description": "<string>"
}
],
"repetitions": 123,
"mode": "single",
"model": "<string>",
"schema": "<string>",
"url": "<string>",
"method": "<string>",
"headers": {},
"payload": {},
"code": "<string>",
"guardrail_config": {
"enabled": true,
"type": "boolean",
"value": true,
"alert_on_failure": false
},
"versionIncrement": "major",
"versionDescription": "<string>"
}
'{
"_id": "<string>",
"description": "<string>",
"type": "llm_eval",
"prompt": "<string>",
"key": "<string>",
"mode": "single",
"model": "<string>",
"created": "2026-04-22T10:10:05.574Z",
"updated": "2026-04-22T10:10:05.574Z",
"guardrail_config": {
"enabled": true,
"type": "boolean",
"value": true,
"alert_on_failure": false
},
"repetitions": 2,
"categories": [
"<string>"
],
"categorical_labels": [
{
"value": "<string>",
"description": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.orq.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Evaluator type. Optional on update — inferred from existing evaluator.
Project path. Optional on update — uses existing project if omitted.
"Default"
1^[a-zA-Z0-9]([a-zA-Z0-9_-]*[a-zA-Z0-9])?$Show child attributes
single, jury Show child attributes
Show child attributes
Show child attributes
Show child attributes
major, minor, patch Successfully updated an eval
llm_eval 1^[a-zA-Z0-9]([a-zA-Z0-9_-]*[a-zA-Z0-9])?$single Show child attributes
1 <= x <= 3Show child attributes
Was this page helpful?
curl --request PATCH \
--url https://api.orq.ai/v2/evaluators/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "<string>",
"path": "Default",
"key": "<string>",
"description": "<string>",
"prompt": "<string>",
"output_type": "<string>",
"categories": [
"<string>"
],
"categorical_labels": [
{
"value": "<string>",
"description": "<string>"
}
],
"repetitions": 123,
"mode": "single",
"model": "<string>",
"schema": "<string>",
"url": "<string>",
"method": "<string>",
"headers": {},
"payload": {},
"code": "<string>",
"guardrail_config": {
"enabled": true,
"type": "boolean",
"value": true,
"alert_on_failure": false
},
"versionIncrement": "major",
"versionDescription": "<string>"
}
'{
"_id": "<string>",
"description": "<string>",
"type": "llm_eval",
"prompt": "<string>",
"key": "<string>",
"mode": "single",
"model": "<string>",
"created": "2026-04-22T10:10:05.574Z",
"updated": "2026-04-22T10:10:05.574Z",
"guardrail_config": {
"enabled": true,
"type": "boolean",
"value": true,
"alert_on_failure": false
},
"repetitions": 2,
"categories": [
"<string>"
],
"categorical_labels": [
{
"value": "<string>",
"description": "<string>"
}
]
}