> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# workflows • AI Agent SDK

> Workflows module for PraisonAI Agents.

# workflows

<Badge color="blue">AI Agent</Badge>

Workflows module for PraisonAI Agents.

Provides workflow/pipeline patterns for orchestrating agents and functions.

AgentFlow is the primary class for deterministic pipelines (v1.0+).
Workflow and Pipeline are silent aliases for backward compatibility.

## Import

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents import workflows
```

### Constants

| Name            | Value                                   |
| --------------- | --------------------------------------- |
| `_LAZY_IMPORTS` | `{'YAMLWorkflowParser': 'yaml_parser'}` |

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="AgentFlow Concept" icon="diagram-project" href="/docs/concepts/agentflow" />

  <Card title="Workflow Patterns" icon="shuffle" href="/docs/features/workflow-patterns" />

  <Card title="Routing" icon="route" href="/docs/features/routing" />

  <Card title="Workflows Feature" icon="diagram-project" href="/docs/features/workflows" />

  <Card title="YAML Workflows" icon="file-code" href="/docs/features/yaml-workflows" />
</CardGroup>
