Skip to content

VectorStoreExpiresAfter

The expiration policy for a vector store.

Example Usage

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

let value: VectorStoreExpiresAfter = {
  anchor: "last_active_at",
  days: 889626,
};

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.