Pinecone TypeScript SDK - v8.2.0
    Preparing search index...

    Type Alias QueryResponse<T>

    Response from Index.query

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

    Type Parameters

    Index

    The query results sorted by similarity

    namespace: string

    The namespace where the query was executed.

    The usage information for the query operation.