mirror of
https://github.com/wassname/ml-debug.git
synced 2026-07-14 11:16:55 +08:00
59 lines
1.0 KiB
JSON
59 lines
1.0 KiB
JSON
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"root_cause",
|
|
"confidence",
|
|
"evidence",
|
|
"competing_hypotheses",
|
|
"first_action",
|
|
"prediction_if_true",
|
|
"prediction_if_false",
|
|
"immediate_changes",
|
|
"fallback_logic"
|
|
],
|
|
"properties": {
|
|
"root_cause": {
|
|
"type": "string"
|
|
},
|
|
"confidence": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 1
|
|
},
|
|
"evidence": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"competing_hypotheses": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"first_action": {
|
|
"type": "string"
|
|
},
|
|
"prediction_if_true": {
|
|
"type": "string"
|
|
},
|
|
"prediction_if_false": {
|
|
"type": "string"
|
|
},
|
|
"immediate_changes": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"fallback_logic": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|