abacusai.memory_bucket

Classes

MemoryBucket

A consolidated long-term memory bucket for the user (the DeepAgent "dreaming" brain).

Module Contents

class abacusai.memory_bucket.MemoryBucket(client, bucketKey=None, name=None, shortDescription=None, priority=None, content=None, updatedAtTimestamp=None, humanEdited=None)

Bases: abacusai.return_class.AbstractApiClass

A consolidated long-term memory bucket for the user (the DeepAgent “dreaming” brain).

Parameters:
  • client (ApiClient) – An authenticated API Client instance

  • bucketKey (str) – Stable slug for the bucket (also the rendered filename stem).

  • name (str) – Human-readable bucket title.

  • shortDescription (str) – One-line description of the bucket.

  • priority (int) – Importance, 1 (low) to 5 (high).

  • content (str) – Markdown body of the bucket.

  • updatedAtTimestamp (int) – Last-updated time (unix seconds).

  • humanEdited (bool) – Whether the user has edited this bucket (the cron is additive-only for it).

bucket_key = None
name = None
short_description = None
priority = None
content = None
updated_at_timestamp = None
human_edited = None
deprecated_keys
__repr__()
to_dict()

Get a dict representation of the parameters in this class

Returns:

The dict value representation of the class parameters

Return type:

dict