Type alias PineconeDeleteParams
PineconeDeleteParams: {
deleteAll?: boolean;
filter?: object;
ids?: string[];
namespace?: string;
}
Type declaration
Optional
deleteAll?: boolean
Optional
filter?: object
Optional
ids?: string[]
Optional
namespace?: string
Type that defines the parameters for the delete operation in the PineconeStore class. It includes ids, filter, deleteAll flag, and namespace.