Defines the parameters for the delete method in the Chroma class. It can either contain an array of ids of the documents to be deleted or a filter object to specify the documents to be deleted.

interface ChromaDeleteParams<T> {
    filter?: T;
    ids?: string[];
}

Type Parameters

  • T

Properties

Properties

filter?: T
ids?: string[]

Generated using TypeDoc