weaviate-agents
    Preparing search index...

    Type Alias QueryAgentResponse

    type QueryAgentResponse = {
        aggregations: AggregationResult[][];
        collectionNames: string[];
        finalAnswer: string;
        isPartialAnswer: boolean;
        missingInformation: string[];
        originalQuery: string;
        outputType: "finalState";
        searches: SearchResult[][];
        sources: Source[];
        totalTime: number;
        usage: Usage;
        display(): void;
    }
    Index

    Properties

    aggregations: AggregationResult[][]
    collectionNames: string[]
    finalAnswer: string
    isPartialAnswer: boolean
    missingInformation: string[]
    originalQuery: string
    outputType: "finalState"
    searches: SearchResult[][]
    sources: Source[]
    totalTime: number
    usage: Usage

    Methods