Skip to content

VectorStoreFileDeletionStatus

Deletion status for a vector store file.

Example Usage

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

let value: VectorStoreFileDeletionStatus = {
  id: "<id>",
  object: "vector_store.file.deleted",
  deleted: false,
};

Fields

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