@squidcloud/client
    Preparing search index...

    Interface ExecuteAiQueryResponse

    Response from an AI query execution. Contains the generated answer, optional explanation, and executed query details.

    interface ExecuteAiQueryResponse {
        answer: string;
        executedQuery?: string;
        explanation?: string;
        queryMarkdownType?: string;
        rawResultsUrl?: string;
        success: boolean;
    }
    Index

    Properties

    answer: string

    AI-generated answer for the query.

    executedQuery?: string

    Query executed by the AI, if applicable.

    explanation?: string

    Optional explanation for the AI-generated answer.

    queryMarkdownType?: string

    Markdown format type of the executed query response.

    rawResultsUrl?: string

    URL to access raw results from the query execution.

    success: boolean

    Indicates whether the query execution was successful.