@squidcloud/client
    Preparing search index...

    Interface ExecuteAiQueryMultiResponse

    Response from executing an AI query across multiple integrations. Includes answers and explanations for each executed query.

    interface ExecuteAiQueryMultiResponse {
        answer: string;
        executedQueries: ExecutedQuery[];
        explanation?: string;
        success: boolean;
    }
    Index

    Properties

    answer: string

    AI-generated answer for the multi-integration query.

    executedQueries: ExecutedQuery[]

    List of executed queries with details.

    explanation?: string

    Optional explanation for the AI-generated response.

    success: boolean

    Indicates whether the query execution was successful.