๐๏ธ Baseline (Direct Execution)
November 28, 2025 ยท View on GitHub
๐ Home โบ Workflows โบ ๐๏ธ Baseline
โ Workflows โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ 01 Prompt Chaining โ
๐๏ธ Baseline (Direct Execution)
TL;DR: Single augmented LLM call without orchestration. The simplest baseline โ use when tasks need no complexity.
Diagram
%%{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
Characteristics
| Property | Value |
|---|---|
| Complexity | None |
| Parallelism | None |
| Human-Loop | None |
| Iteration | None |
When to Use
- 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"
When NOT to Use
- Complex multi-step workflows
- Tasks requiring multiple specializations
- Large-scale operations
โ Workflows โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ 01 Prompt Chaining โ