@squidcloud/client
    Preparing search index...

    Interface AiAgentExecutionPlanOptions

    Options for AI agent execution plan, allowing the agent to plan what functionality to use (connected agents, connected, integrations, or functions).

    interface AiAgentExecutionPlanOptions {
        enabled: boolean;
        model?: string;
        reasoningEffort?: AiReasoningEffort;
    }
    Index

    Properties

    enabled: boolean

    Whether to enable an execution plan for the agent.

    model?: string

    The model to use for the execution plan - defaults to the model used by the agent.

    reasoningEffort?: AiReasoningEffort

    In case the model supports reasoning, this will control the level of effort - defaults to high.