⚡Parallel
⚡ The Parallel block runs its inner blocks for several items at once instead of sequentially.
Difference from a Loop
- Loop: Processes items one after another.
- Parallel: Processes them at the same time, making it faster for independent items.
Uses
- Independent calls that can run together, such as summarizing several documents or retrieving several sources.

