weaviate-agents
    Preparing search index...

    Type Alias AggregationResult

    The aggregations performed on a collection in a vector database.

    They should be based on the original user query and can include multiple aggregations across different properties and metrics.

    type AggregationResult = {
        aggregations: PropertyAggregation[];
        collection: string;
        filters: PropertyFilter[];
        groupbyProperty?: string;
        searchQuery?: string;
    }
    Index

    Properties

    aggregations: PropertyAggregation[]
    collection: string
    filters: PropertyFilter[]
    groupbyProperty?: string
    searchQuery?: string