Open Agent Loops
API Reference

ExecutionMode

@open-agent-loops/core


Defined in: tools/tools.types.ts:24

How a tool runs relative to its sibling calls in the same turn.

Remarks

  • Parallel (default) lets the loop run it alongside others.
  • Sequential forces the whole batch to run one-at-a-time.

Enumeration Members

Enumeration MemberValueDescriptionDefined in
Parallel"parallel"Run alongside sibling calls in the same turn; the default.tools/tools.types.ts:26
Sequential"sequential"Force the whole batch of calls in the turn to run one-at-a-time.tools/tools.types.ts:28

On this page