Class ExpiresAfter
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public class ExpiresAfter
Properties
| Edit this page View SourceAnchor
Anchor timestamp after which the expiration policy applies. Supported anchors: last_active_at.
Declaration
[JsonProperty("anchor")]
public string Anchor { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Days
The number of days after the anchor time that the vector store will expire.
Declaration
[JsonProperty("days")]
public int? Days { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Minutes
The number of minutes after the anchor before the container expires.
Declaration
[JsonProperty("minutes")]
public int? Minutes { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |