Add reference video input analysis workflow

This commit is contained in:
calesthio
2026-04-04 10:01:11 -07:00
parent 87df43d39f
commit b0917d2d84
25 changed files with 2640 additions and 5 deletions
@@ -95,6 +95,22 @@
"success_criteria": {
"type": "array",
"items": { "type": "string" }
},
"sub_stages": {
"type": "array",
"description": "Optional sub-stages within a stage (e.g., sample preview for reference-driven productions)",
"items": {
"type": "object",
"required": ["name"],
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"condition": { "type": "string", "description": "When this sub-stage activates (e.g., video_analysis_brief_exists)" },
"human_approval_default": { "type": "boolean", "default": true },
"tools_available": { "type": "array", "items": { "type": "string" } },
"review_focus": { "type": "array", "items": { "type": "string" } }
}
}
}
},
"additionalProperties": false
@@ -106,6 +122,15 @@
"enum": ["guided", "manual_all", "auto_noncreative"],
"default": "guided"
},
"reference_input": {
"type": "object",
"description": "Configuration for reference video input support",
"properties": {
"supported": { "type": "boolean", "default": false },
"analysis_depth": { "type": "string", "enum": ["transcript_only", "standard", "deep"], "default": "standard" },
"analysis_tools": { "type": "array", "items": { "type": "string" } }
}
},
"metadata": { "type": "object" },
"orchestration": {
"type": "object",