chore: regenerate JSON schema for runtime_fallback union type

This commit is contained in:
YeonGyu-Kim 2026-02-22 01:54:51 +09:00
parent 976798d0e3
commit 9b56b748ec

View File

@ -3447,35 +3447,42 @@
"additionalProperties": false "additionalProperties": false
}, },
"runtime_fallback": { "runtime_fallback": {
"type": "object", "anyOf": [
"properties": { {
"enabled": {
"type": "boolean" "type": "boolean"
}, },
"retry_on_errors": { {
"type": "array", "type": "object",
"items": { "properties": {
"type": "number" "enabled": {
} "type": "boolean"
}, },
"max_fallback_attempts": { "retry_on_errors": {
"type": "number", "type": "array",
"minimum": 1, "items": {
"maximum": 20 "type": "number"
}, }
"cooldown_seconds": { },
"type": "number", "max_fallback_attempts": {
"minimum": 0 "type": "number",
}, "minimum": 1,
"timeout_seconds": { "maximum": 20
"type": "number", },
"minimum": 0 "cooldown_seconds": {
}, "type": "number",
"notify_on_fallback": { "minimum": 0
"type": "boolean" },
"timeout_seconds": {
"type": "number",
"minimum": 0
},
"notify_on_fallback": {
"type": "boolean"
}
},
"additionalProperties": false
} }
}, ]
"additionalProperties": false
}, },
"background_task": { "background_task": {
"type": "object", "type": "object",