The expiration policy for a vector store.

interface ExpiresAfter {
    anchor: "last_active_at";
    days: number;
}

Properties

Properties

anchor: "last_active_at"

Anchor timestamp after which the expiration policy applies. Supported anchors: last_active_at.

days: number

The number of days after the anchor time that the vector store will expire.