Graphorin API reference v0.13.8
Graphorin API reference / @graphorin/agent / / AgentFanOutOptions
Interface: AgentFanOutOptions<TOutput>
Defined in: packages/agent/src/types.ts:821
Stable
Per-call shape accepted by Agent.fanOut(...). Mirrors the pure-function FanOutOptions but omits the runtime-supplied identifiers - the Agent instance carries those.
Type Parameters
| Type Parameter | Default type |
|---|---|
TOutput | unknown |
Properties
| Property | Modifier | Type | Defined in |
|---|---|---|---|
children | readonly | readonly { agentId: string; historyAdjustment?: number; invoke: () => Promise<TOutput>; origin?: ContentOriginKind; trustClass?: TrustClass; }[] | packages/agent/src/types.ts:822 |
maxConcurrentChildren? | readonly | number | packages/agent/src/types.ts:823 |
mergeStrategy? | readonly | MergeStrategy<TOutput> | packages/agent/src/types.ts:825 |
perBudget? | readonly | PerChildBudget | packages/agent/src/types.ts:824 |
signal? | readonly | AbortSignal | packages/agent/src/types.ts:826 |