@squidcloud/client
    Preparing search index...

    Interface ExecuteAiQueryOptions

    Options for configuring AI query execution. Includes instructions, model overrides, and additional execution settings.

    interface ExecuteAiQueryOptions {
        collectionsToUse?: string[];
        enableCodeInterpreter?: boolean;
        enableRawResults?: boolean;
        generateWalkthrough?: boolean;
        instructions?: string;
        overrideModel?: string;
    }
    Index

    Properties

    collectionsToUse?: string[]

    List of collections to use in the AI query.

    enableCodeInterpreter?: boolean

    Whether to enable code interpreter for query execution.

    enableRawResults?: boolean

    Whether to enable raw results output.

    generateWalkthrough?: boolean

    Whether to generate a step-by-step walkthrough for the response.

    instructions?: string

    Custom instructions to modify AI query behavior.

    overrideModel?: string

    Specific AI model override for the query execution.