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
| Field | Type | Required | Description |
|---|---|---|---|
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. |