Sequential step executor (script, claude_prompt, approval, api_call, template, skyvern placeholder), reaction-based approvals, file upload trigger matching, portal API state sync. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 lines
182 B
Python
7 lines
182 B
Python
"""Pipeline orchestration engine for Matrix bot."""
|
|
|
|
from .engine import PipelineEngine
|
|
from .state import PipelineStateManager
|
|
|
|
__all__ = ["PipelineEngine", "PipelineStateManager"]
|