interface AgentPlanStepV1 {
    effect: AgentEffect;
    fields: readonly string[];
    id: string;
    inputDigest: `sha256:${string}`;
    limits: {
        bytes: number;
        rows: number;
    };
    parametersDigest: `sha256:${string}`;
    queryPlan: AgentQueryPlanBindingV1;
    source: AgentSourceBindingV1;
    tool: string;
}

Properties

effect: AgentEffect
fields: readonly string[]
id: string
inputDigest: `sha256:${string}`

Digest of the canonical parameters the host will pass to the operation.

limits: {
    bytes: number;
    rows: number;
}
parametersDigest: `sha256:${string}`
tool: string