Skip to content

ModifyVectorStoreRequestExpiresAfter

The expiration policy for a vector store.

Example Usage

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

let value: ModifyVectorStoreRequestExpiresAfter = {
  anchor: "last_active_at",
  days: 523029,
};

Fields

FieldTypeRequiredDescription
anchor"last_active_at"✔️Anchor timestamp after which the expiration policy applies. Supported anchors: last_active_at.
daysnumber✔️The number of days after the anchor time that the vector store will expire.