Class: Anthropic::Models::Beta::MemoryStores::BetaManagedAgentsMemory
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::MemoryStores::BetaManagedAgentsMemory
- Defined in:
- lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb
Overview
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#content ⇒ String?
The memory’s UTF-8 text content.
-
#content_sha256 ⇒ String
Lowercase hex SHA-256 digest of the UTF-8 ‘content` bytes (64 characters).
-
#content_size_bytes ⇒ Integer
Size of ‘content` in bytes (the UTF-8 plaintext length).
-
#created_at ⇒ Time
A timestamp in RFC 3339 format.
-
#id ⇒ String
Unique identifier for this memory (a ‘mem_…` value).
-
#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_…` value).
-
#path ⇒ String
Hierarchical path of the memory within the store, e.g.
- #type ⇒ Symbol, Anthropic::Models::Beta::MemoryStores::BetaManagedAgentsMemory::Type
-
#updated_at ⇒ Time
A timestamp in RFC 3339 format.
Instance Method Summary collapse
-
#initialize(id:, content_sha256:, content_size_bytes:, created_at:, memory_store_id:, memory_version_id:, path:, type:, updated_at:, content: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see BetaManagedAgentsMemory for more details.
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.
|
|
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 80
|
Instance Attribute Details
#content ⇒ String?
The memory’s UTF-8 text content. Populated when ‘view=full`; `null` when `view=basic`. Maximum 100 kB (102,400 bytes).
78 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 78 optional :content, String, nil?: true |
#content_sha256 ⇒ String
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`.
23 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 23 required :content_sha256, String |
#content_size_bytes ⇒ Integer
Size of ‘content` in bytes (the UTF-8 plaintext length). Always populated, regardless of `view`.
30 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 30 required :content_size_bytes, Integer |
#created_at ⇒ Time
A timestamp in RFC 3339 format
36 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 36 required :created_at, Time |
#id ⇒ String
Unique identifier for this memory (a ‘mem_…` value). Stable across renames; use this ID, not the path, to read, update, or delete the memory.
14 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 14 required :id, String |
#memory_store_id ⇒ String
ID of the memory store this memory belongs to (a ‘memstore_…` value).
42 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 42 required :memory_store_id, String |
#memory_version_id ⇒ String
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).
52 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 52 required :memory_version_id, String |
#path ⇒ String
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.
60 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 60 required :path, String |
#type ⇒ Symbol, 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_at ⇒ Time
A timestamp in RFC 3339 format
71 |
# File 'lib/anthropic/models/beta/memory_stores/beta_managed_agents_memory.rb', line 71 required :updated_at, Time |