DocWeave / backend /app /workflow /__init__.py
shak3008's picture
Build workflow execution foundation
34c89e2
Raw
History Blame Contribute Delete
350 Bytes
# Placeholder package.
# LangGraph workflow engine will be implemented here.
# Nodes: ingestion β†’ classification β†’ extraction β†’ reconciliation
# β†’ rule_validation β†’ decision β†’ human_review β†’ commit
from .executor import WorkflowExecutor
from .state import WorkflowState
__all__ = [
"WorkflowExecutor",
"WorkflowState",
]