🏠 Home › Workflows › 🏎️ Baseline
← Workflows ━━●━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 01 Prompt Chaining →
TL;DR: Single augmented LLM call without orchestration. The simplest baseline — use when tasks need no complexity.
%%{init: {'theme': 'base', 'themeVariables': {'lineColor': '#64748b'}}}%%
flowchart LR
classDef user fill:#6366f1,stroke:#4f46e5,stroke-width:2px,color:#ffffff
classDef main fill:#8b5cf6,stroke:#7c3aed,stroke-width:2px,color:#ffffff
USER["🙋♀️📥 User Request"]:::user --> MA["🐔💭 Main Agent"]:::main
MA -->|"🐔📤"| OUT["💁♀️📤 User Receives"]:::user
| Property | Value |
|---|---|
| Complexity | None |
| Parallelism | None |
| Human-Loop | None |
| Iteration | None |
- Simple, single-step tasks
- No need for specialization
- Quick operations (file read, simple edit, search)
Examples:
- "What's in the config.json file?"
- "Add a console.log statement to this function"
- "Search for usages of
useState"
- Complex multi-step workflows
- Tasks requiring multiple specializations
- Large-scale operations
← Workflows ━━●━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 01 Prompt Chaining →