forked from themanojdesai/python-a2a
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
37 lines (33 loc) · 685 Bytes
/
Copy path__init__.py
File metadata and controls
37 lines (33 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""
Workflow system for orchestrating agent interactions.
This module provides a fluent API for defining complex agent workflows
with conditional branching, parallel execution, and automatic agent routing.
"""
from .flow import (
Flow,
WorkflowContext,
ParallelBuilder
)
from .steps import (
WorkflowStep,
QueryStep,
AutoRouteStep,
FunctionStep,
ConditionalBranch,
ConditionStep,
ParallelStep,
StepType,
)
__all__ = [
'Flow',
'WorkflowContext',
'WorkflowStep',
'QueryStep',
'AutoRouteStep',
'FunctionStep',
'ConditionalBranch',
'ConditionStep',
'ParallelStep',
'ParallelBuilder',
'StepType',
]