View Source ExOpenAI.Components.VectorStoreExpirationAfter (ex_openai.ex v2.0.0-beta2)

The expiration policy for a vector store.

Fields

  • :anchor - required - :last_active_at
    Anchor timestamp after which the expiration policy applies. Supported anchors: last_active_at.
    Allowed values: "last_active_at"

  • :days - required - integer()
    The number of days after the anchor time that the vector store will expire.
    Constraints: minimum: 1, maximum: 365

Summary

Types

@type t() :: %ExOpenAI.Components.VectorStoreExpirationAfter{
  anchor: :last_active_at,
  days: integer()
}