agent-workflow
Version:
A powerful workflow engine supporting DAG (Directed Acyclic Graph) task scheduling, dynamic task generation, and intelligent strategy systems.
6 lines (5 loc) • 553 B
TypeScript
export { WorkflowBuilder, DAGTask, StreamingDAGTask, AISDKStreamingTask, } from './workflow/WorkflowBuilder';
export type { WorkflowConfig, DynamicStrategy, Workflow, WorkflowResult, TaskExecutionResult, StreamChunk, StreamingWorkflowResult, StreamingWorkflow, AISDKStreamingWorkflowResult, AISDKStreamingWorkflow, WorkflowContext, } from './workflow/WorkflowBuilder';
export { TaskRegistry } from './workflow/TaskRegistry';
export type { Task, TaskInput, TaskOutput } from './workflow/Task';
export { ContextManager } from './workflow/ContextManager';