| Example | Description |
|---|---|
| Basic Chat Workflow Agent | Example demonstrating how to add a Workflow using a WorkflowAgent to your AgentOS. |
| Basic Workflow | Serve a two-step research and content planning workflow on AgentOS. |
| Basic Workflow Team | Serve a workflow whose research step runs a two-agent team before a content planning step. |
| Customer Research Workflow Parallel | Run customer research steps in parallel with session state, then consolidate and recommend tasks. |
| Workflow With Conditional | Add a Condition step that triggers fact-checking only when the summary contains factual claims. |
| Workflow With Custom Function Executors | Demonstrates AgentOS workflows using both sync and streaming custom function steps. |
| Workflow With Custom Function Updating Session State | Use a custom function step that reads and updates workflow session state across planning runs. |
| Workflow With History | Give workflow steps conversation history with add_workflow_history_to_steps in a meal planner. |
| Workflow With Input Schema | Validate workflow input against a Pydantic model with input_schema. |
| Workflow With Loop | Repeat research steps in a Loop until an end condition passes or max_iterations is reached. |
| Workflow With Nested Steps | Nest a research Loop inside a Router so the workflow picks its research strategy at runtime. |
| Workflow With Parallel | Run two research steps in Parallel before sequential writing and review steps. |
| Workflow With Parallel And Custom Function Step Stream | Stream events from async custom-function steps running in Parallel inside a workflow. |
| Workflow With Router | Route to HackerNews or web research based on topic keywords with a Router step. |
| Workflow With Steps | Group research, writing, and editing into a reusable Steps sequence inside a workflow. |
| Workflow With Workflow as a Step | Nest three levels of workflows, with a Parallel step wrapping a Condition-gated fact check, served through AgentOS on Postgres. |
Workflow
Workflow
Browse AgentOS workflow examples for steps, conditions, loops, routers, parallel branches, and custom function executors.