> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-codex-docs-audit-20260719-0149.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflow

> Browse AgentOS workflow examples for steps, conditions, loops, routers, parallel branches, and custom function executors.

| Example                                                                                                                                      | Description                                                                                                                     |
| -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| [Basic Chat Workflow Agent](/examples/agent-os/workflow/basic-chat-workflow-agent)                                                           | Example demonstrating how to add a Workflow using a WorkflowAgent to your AgentOS.                                              |
| [Basic Workflow](/examples/agent-os/workflow/basic-workflow)                                                                                 | Serve a two-step research and content planning workflow on AgentOS.                                                             |
| [Basic Workflow Team](/examples/agent-os/workflow/basic-workflow-team)                                                                       | Serve a workflow whose research step runs a two-agent team before a content planning step.                                      |
| [Customer Research Workflow Parallel](/examples/agent-os/workflow/customer-research-workflow-parallel)                                       | Run customer research steps in parallel with session state, then consolidate and recommend tasks.                               |
| [Workflow With Conditional](/examples/agent-os/workflow/workflow-with-conditional)                                                           | Add a Condition step that triggers fact-checking only when the summary contains factual claims.                                 |
| [Workflow With Custom Function Executors](/examples/agent-os/workflow/workflow-with-custom-function)                                         | Demonstrates AgentOS workflows using both sync and streaming custom function steps.                                             |
| [Workflow With Custom Function Updating Session State](/examples/agent-os/workflow/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](/examples/agent-os/workflow/workflow-with-history)                                                                   | Give workflow steps conversation history with add\_workflow\_history\_to\_steps in a meal planner.                              |
| [Workflow With Input Schema](/examples/agent-os/workflow/workflow-with-input-schema)                                                         | Validate workflow input against a Pydantic model with input\_schema.                                                            |
| [Workflow With Loop](/examples/agent-os/workflow/workflow-with-loop)                                                                         | Repeat research steps in a Loop until an end condition passes or max\_iterations is reached.                                    |
| [Workflow With Nested Steps](/examples/agent-os/workflow/workflow-with-nested-steps)                                                         | Nest a research Loop inside a Router so the workflow picks its research strategy at runtime.                                    |
| [Workflow With Parallel](/examples/agent-os/workflow/workflow-with-parallel)                                                                 | Run two research steps in Parallel before sequential writing and review steps.                                                  |
| [Workflow With Parallel And Custom Function Step Stream](/examples/agent-os/workflow/workflow-with-parallel-and-custom-function-step-stream) | Stream events from async custom-function steps running in Parallel inside a workflow.                                           |
| [Workflow With Router](/examples/agent-os/workflow/workflow-with-router)                                                                     | Route to HackerNews or web research based on topic keywords with a Router step.                                                 |
| [Workflow With Steps](/examples/agent-os/workflow/workflow-with-steps)                                                                       | Group research, writing, and editing into a reusable Steps sequence inside a workflow.                                          |
| [Workflow With Workflow as a Step](/examples/agent-os/workflow/workflow-with-workflow-as-step)                                               | Nest three levels of workflows, with a Parallel step wrapping a Condition-gated fact check, served through AgentOS on Postgres. |
