API Reference
ExecutionMode
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.Sequentialforces the whole batch to run one-at-a-time.
Enumeration Members
| Enumeration Member | Value | Description | Defined 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 |