ArchAstro. Types. WorkingMemoryEntry
(archastro v0.2.0)
Copy Markdown
A key-value memory record stored for an agent, optionally scoped to a user. Memory entries persist across invocations and may carry an expiration time.
Summary
Types
@type t() :: %ArchAstro.Types.WorkingMemoryEntry{ agent: String.t() | ArchAstro.Unset.t(), created_at: DateTime.t() | ArchAstro.Unset.t(), expires_at: DateTime.t() | ArchAstro.Unset.t(), id: String.t(), key: String.t() | ArchAstro.Unset.t(), updated_at: DateTime.t() | ArchAstro.Unset.t(), value: String.t() | ArchAstro.Unset.t() }
Functions
@spec from_map(ArchAstro.JSON.object()) :: t()
@spec matches?(ArchAstro.JSON.t()) :: boolean()
@spec to_map(t()) :: ArchAstro.JSON.object()