ART Framework API Docs
    Preparing search index...

    Interface ExecutionConfig

    Configuration options for the execution phase of the PES Agent. Controls TAEF (Tool-Aware Execution Framework) behavior.

    ExecutionConfig

    interface ExecutionConfig {
        enableA2ADelegation?: boolean;
        maxIterations?: number;
        taefMaxRetries?: number;
        toolResultMaxLength?: number;
    }
    Index

    Properties

    enableA2ADelegation?: boolean

    Whether to enable A2A (Agent-to-Agent) delegation during execution. When true, injects the delegate_to_agent tool into execution context. Default: false

    maxIterations?: number

    Maximum number of LLM iterations per todo item during execution. Default: 5

    taefMaxRetries?: number

    Maximum number of TAEF tool validation retries when required tools are not invoked. Default: 2

    toolResultMaxLength?: number

    Maximum character length for tool result serialization in step context. Higher values preserve more data for the LLM but increase token usage. Default: 60000 (effectively no practical limit)