@squidcloud/client
    Preparing search index...

    Interface ExecutedQueryInfo

    Information about an executed query in a multi-query scenario.

    interface ExecutedQueryInfo {
        purpose?: string;
        query: string;
        rawResult?: AiFileUrl;
        success: boolean;
    }
    Index

    Properties

    purpose?: string

    Optional description of what this query retrieves.

    query: string

    The executed query string.

    rawResult?: AiFileUrl

    Raw result file information. Undefined if upload failed or raw results are not enabled.

    success: boolean

    Whether this specific query executed successfully.