Defined in: packages/ai/src/types.ts:858
State passed to agent loop strategy for determining whether to continue
finishReason: string | null;Defined in: packages/ai/src/types.ts:864
Finish reason from the last response
iterationCount: number;Defined in: packages/ai/src/types.ts:860
Current iteration count (0-indexed). One iteration = one model turn.
lastTurnToolCallCount: number;Defined in: packages/ai/src/types.ts:876
Tool calls in the most recent batch — a live model turn or a pending/resume batch (0 when the last phase produced no tool calls).
messages: ModelMessage<
| string
| ContentPart<unknown, unknown, unknown, unknown, unknown>[]
| null>[];Defined in: packages/ai/src/types.ts:862
Current messages array
toolCallCount: number;Defined in: packages/ai/src/types.ts:871
Cumulative tool calls counted so far in this run (model-emitted during the agent loop, including ones skipped by middleware, and pending tools from the inbound message list when resumed). Not a recount of full message history; not model turns.