declarative Markdown workflow layer

This commit is contained in:
2026-05-04 12:35:59 +02:00
parent 33fa602fe5
commit 0bc63aab9f
19 changed files with 1854 additions and 11 deletions

View File

@@ -156,6 +156,15 @@ from markitect_tool.template import (
analyze_template,
render_template,
)
from markitect_tool.workflow import (
WorkflowError,
WorkflowOutputRecord,
WorkflowPlan,
WorkflowRunResult,
WorkflowRunner,
load_workflow_file,
resolve_workflow_bindings,
)
__all__ = [
"ContentBlock",
@@ -287,4 +296,11 @@ __all__ = [
"TemplateRenderResult",
"analyze_template",
"render_template",
"WorkflowError",
"WorkflowOutputRecord",
"WorkflowPlan",
"WorkflowRunResult",
"WorkflowRunner",
"load_workflow_file",
"resolve_workflow_bindings",
]