Skip to content

VectorStoreDeletionStatus

Deletion status for a vector store.

Example Usage

typescript
import { VectorStoreDeletionStatus } from "@meetkai/mka1/models/components";

let value: VectorStoreDeletionStatus = {
  id: "<id>",
  object: "vector_store.deleted",
  deleted: true,
};

Fields

FieldTypeRequiredDescription
idstring✔️The ID of the deleted vector store.
object"vector_store.deleted"✔️The object type, which is always 'vector_store.deleted'.
deletedboolean✔️Whether the deletion was successful.