🧭Choosing What to Use
🧭 When should you use a simple single-model agent, and when do you need a multi-step workflow? It depends on task complexity.
Choose the right approach
| Need | Best fit |
|---|---|
| Questions and answers from knowledge | One agent + Knowledge (RAG) |
| Multiple steps and branches | Workflow with Condition/Router blocks |
| Independent parallel tasks | Parallel block |
| Sensitive action | Human in the Loop + Guardrails |
💡 Start with the simplest design that completes the task, then add blocks only when needed.

