RefineCut-Bench / schemas /refinepatch_schema.json
Randallhy's picture
Add files using upload-large-folder tool
aad3c63 verified
Raw
History Blame Contribute Delete
1.2 kB
{
"properties": {
"affected_clip_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"confidence": {
"type": "number"
},
"evidence_clip_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"operations": {
"items": {
"properties": {
"op": {
"enum": [
"replace",
"add",
"remove"
]
},
"path": {
"type": "string"
},
"value": {}
},
"required": [
"op",
"path"
],
"type": "object"
},
"type": "array"
},
"rationale_against_ledger": {
"items": {
"type": "string"
},
"type": "array"
},
"repair_operator": {
"enum": [
"modify_prompt",
"change_tool",
"adjust_parameter",
"reselect_clip",
"retry_with_fallback",
"abort_and_skip"
]
},
"thought": {
"type": "string"
}
},
"required": [
"repair_operator",
"rationale_against_ledger",
"operations"
],
"type": "object"
}