{
"title": "agent.InlineAgentBaseWithFallbacks",
"description": "An [`InlineAgentBase`] with optional fallbacks (no description).",
"type": "object",
"$ref": "agent.InlineAgentBase",
"properties": {
"fallbacks": {
"description": "Fallback agents to try if the primary fails.",
"anyOf": [
{
"type": "array",
"items": {
"$ref": "agent.InlineAgentBase"
}
},
{
"type": "null"
}
],
"omitempty": true
}
}
}