@squidcloud/client
    Preparing search index...

    Interface ExecuteAiSpreadsheetQueryResponse

    Response from executing an AI-powered query over spreadsheet files.

    interface ExecuteAiSpreadsheetQueryResponse {
        answer: string;
        executedCode?: string;
        files?: AiFileUrl[];
        success: boolean;
    }
    Index

    Properties

    answer: string

    AI-generated answer computed from the spreadsheet data.

    executedCode?: string

    All Python code executed to produce the answer, in execution order. Each step ran as its own sandbox script; multiple steps are joined with # --- Step N --- separators.

    files?: AiFileUrl[]

    Files produced while answering (e.g. charts or exports emitted by the executed code).

    success: boolean

    Indicates whether the query execution was successful.