Class: Anthropic::Models::Beta::MemoryStores::BetaManagedAgentsMemory

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb

Overview

Defined Under Namespace

Modules: Type

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initialize(id:, content_sha256:, content_size_bytes:, created_at:, memory_store_id:, memory_version_id:, path:, type:, updated_at:, content: nil) ⇒ Object

Some parameter documentations has been truncated, see Anthropic::Models::Beta::MemoryStores::BetaManagedAgentsMemory for more details.

A ‘memory` object: a single text document at a hierarchical path inside a memory store. The `content` field is populated when `view=full` and `null` when `view=basic`; the `content_size_bytes` and `content_sha256` fields are always populated so sync clients can diff without fetching content. Memories are addressed by their `mem_…` ID; the path is the create key and can be changed via update.

Parameters:

  • id (String)

    Unique identifier for this memory (a ‘mem_…` value). Stable across renames; us

  • content_sha256 (String)

    Lowercase hex SHA-256 digest of the UTF-8 ‘content` bytes (64 characters). The s

  • content_size_bytes (Integer)

    Size of ‘content` in bytes (the UTF-8 plaintext length). Always populated, regar

  • created_at (Time)

    A timestamp in RFC 3339 format

  • memory_store_id (String)

    ID of the memory store this memory belongs to (a ‘memstore_…` value).

  • memory_version_id (String)

    ID of the ‘memory_version` representing this memory’s current content (a ‘memver

  • path (String)

    Hierarchical path of the memory within the store, e.g. ‘/projects/foo/notes.md`.

  • type (Symbol, Anthropic::Models::Beta::MemoryStores::BetaManagedAgentsMemory::Type)
  • updated_at (Time)

    A timestamp in RFC 3339 format

  • content (String, nil) (defaults to: nil)

    The memory’s UTF-8 text content. Populated when ‘view=full`; `null` when `view=b



# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 80

Instance Attribute Details

#contentString?

The memory’s UTF-8 text content. Populated when ‘view=full`; `null` when `view=basic`. Maximum 100 kB (102,400 bytes).

Returns:

  • (String, nil)


78
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 78

optional :content, String, nil?: true

#content_sha256String

Lowercase hex SHA-256 digest of the UTF-8 ‘content` bytes (64 characters). The server applies no normalization, so clients can compute the same hash locally for staleness checks and as the value for a `content_sha256` precondition on update. Always populated, regardless of `view`.

Returns:

  • (String)


23
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 23

required :content_sha256, String

#content_size_bytesInteger

Size of ‘content` in bytes (the UTF-8 plaintext length). Always populated, regardless of `view`.

Returns:

  • (Integer)


30
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 30

required :content_size_bytes, Integer

#created_atTime

A timestamp in RFC 3339 format

Returns:

  • (Time)


36
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 36

required :created_at, Time

#idString

Unique identifier for this memory (a ‘mem_…` value). Stable across renames; use this ID, not the path, to read, update, or delete the memory.

Returns:

  • (String)


14
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 14

required :id, String

#memory_store_idString

ID of the memory store this memory belongs to (a ‘memstore_…` value).

Returns:

  • (String)


42
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 42

required :memory_store_id, String

#memory_version_idString

ID of the ‘memory_version` representing this memory’s current content (a ‘memver_…` value). This is the authoritative head pointer; `memory_version` objects do not carry an `is_latest` flag, so compare against this field instead. Enumerate the full history via [List memory versions](/en/api/beta/memory_stores/memory_versions/list).

Returns:

  • (String)


52
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 52

required :memory_version_id, String

#pathString

Hierarchical path of the memory within the store, e.g. ‘/projects/foo/notes.md`. Always starts with `/`. Paths are case-sensitive and unique within a store. Maximum 1,024 bytes.

Returns:

  • (String)


60
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 60

required :path, String

#typeSymbol, Anthropic::Models::Beta::MemoryStores::BetaManagedAgentsMemory::Type



65
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 65

required :type, enum: -> { Anthropic::Beta::MemoryStores::BetaManagedAgentsMemory::Type }

#updated_atTime

A timestamp in RFC 3339 format

Returns:

  • (Time)


71
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 71

required :updated_at, Time