Member Junction
    Preparing search index...

    Type Alias QueryResponse<T>

    Response from VectorDBBase.queryIndex

    type QueryResponse<T extends RecordMetadata = RecordMetadata> = {
        matches: ScoredRecord<T>[];
        namespace: string;
        usage?: OperationUsage;
    }

    Type Parameters

    Index

    Properties

    matches: ScoredRecord<T>[]

    The query results sorted by similarity

    namespace: string

    The namespace where the query was executed.

    The usage information for the query operation.