Interface VectorizeVectorMutation

Results of an operation that performed a mutation on a set of vectors. Here, ids is a list of vectors that were successfully processed.

interface VectorizeVectorMutation {
    count: number;
    ids: string[];
}

Properties

Properties

count: number
ids: string[]