weaviate-agents
    Preparing search index...

    Type Alias AskModeResponse

    type AskModeResponse = {
        aggregations: Aggregation[];
        finalAnswer: string;
        isPartialAnswer?: boolean;
        missingInformation?: string[];
        outputType: "finalState";
        searches: Search[];
        sources?: Source[];
        totalTime: number;
        usage: ModelUnitUsage;
        display(): void;
    }
    Index

    Properties

    aggregations: Aggregation[]
    finalAnswer: string
    isPartialAnswer?: boolean
    missingInformation?: string[]
    outputType: "finalState"
    searches: Search[]
    sources?: Source[]
    totalTime: number

    Methods