@deskcreate/agentcraft
    Preparing search index...

    Interface AgentPoolOptions

    interface AgentPoolOptions {
        downgradeOnBudgetPressure?: boolean;
        fallback?: Agent;
        fallbackMode?:
            | "none"
            | "all"
            | "first-error"
            | "retryable"
            | "non-retryable";
        strategy: | "speed"
        | "cost"
        | "quality"
        | "round-robin"
        | "random"
        | "best-fit";
        upgradeOnQualityFailure?: boolean;
    }
    Index

    Properties

    downgradeOnBudgetPressure?: boolean
    fallback?: Agent
    fallbackMode?: "none" | "all" | "first-error" | "retryable" | "non-retryable"
    strategy: "speed" | "cost" | "quality" | "round-robin" | "random" | "best-fit"
    upgradeOnQualityFailure?: boolean