Coverage for agentos/workflows/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
1"""AgentOS Workflow Engine — v1.2.7.
3- WorkflowEngine: DAG 工作流编排,步骤依赖、重试、超时。
4- WorkflowTemplate: 预置模板(链式/并行/扇出/汇聚等)。
5"""
7from agentos.workflows.engine import (
8 WorkflowType,
9 WorkflowStep as EngineWorkflowStep,
10 Workflow,
11 WorkflowEngine,
12)
13from agentos.workflows.templates import (
14 StepType,
15 RetryPolicy,
16 WorkflowStep as TemplateWorkflowStep,
17 WorkflowTemplate,
18)
20__all__ = [
21 "WorkflowType",
22 "EngineWorkflowStep",
23 "Workflow",
24 "WorkflowEngine",
25 "StepType",
26 "RetryPolicy",
27 "TemplateWorkflowStep",
28 "WorkflowTemplate",
29]