interface AgentPlanPolicyV1 {
    allowedEffects?: readonly AgentEffect[];
    allowedTools: readonly string[];
    maxAuthorizationScopesPerSource: number;
    maxBytes: number;
    maxCitationsPerSource: number;
    maxFieldsPerStep: number;
    maxOperationParameterBytes: number;
    maxOperationParameterDepth: number;
    maxOperationParameterNodes: number;
    maxRows: number;
    maxSteps: number;
    sources: Readonly<Record<string, AgentSourcePolicyV1>>;
}

Properties

allowedEffects?: readonly AgentEffect[]
allowedTools: readonly string[]
maxAuthorizationScopesPerSource: number
maxBytes: number
maxCitationsPerSource: number
maxFieldsPerStep: number
maxOperationParameterBytes: number
maxOperationParameterDepth: number
maxOperationParameterNodes: number
maxRows: number
maxSteps: number
sources: Readonly<Record<string, AgentSourcePolicyV1>>