From c2d823716dd941aa49c2f2957329b073a6f14e72 Mon Sep 17 00:00:00 2001 From: DeepakAkkil <88075779+deepak-akkil@users.noreply.github.com> Date: Sun, 17 May 2026 08:35:41 +0300 Subject: [PATCH] update memory doc --- docs/MEMORY.md | 7 ++----- tools/README.md | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/MEMORY.md b/docs/MEMORY.md index 1b10c09..cc5be2e 100644 --- a/docs/MEMORY.md +++ b/docs/MEMORY.md @@ -15,7 +15,7 @@ Agents have a multi-layered memory system designed for long-horizon coherence: │ ┌──────────────────────────────────────────────┐ │ │ │ SOUL ENTRIES │ │ │ │ Core beliefs, values, fears, convictions │ │ -│ │ Permanent. Never summarized or archived. │ │ +│ │ Permanent. Never summarized. │ │ │ │ Identity anchors that persist across all │ │ │ │ memory cycles. │ │ │ └──────────────────────────────────────────────┘ │ @@ -118,7 +118,7 @@ When an agent triggers `self_care` (must be at home), the system performs cognit └──────────────────────────────────────────┘ ``` -This is analogous to sleep in biological systems — a consolidation phase where individual experiences are compressed into thematic understanding. +self_care tool call is a consolidation phase where individual experiences are compressed into thematic understanding. --- @@ -169,11 +169,8 @@ Every agent maintains a relationship model for every other agent they've interac | Field | Description | |-------|-------------| | `relationship_type` | ally, rival, mentor, romantic_partner, neutral, etc. | -| `trust_level` | Numeric trust score | -| `emotional_tone` | Current emotional quality of the relationship | | `rationale` | Agent's stated reason for the relationship classification | | `interaction_count` | Total interactions | | `first_met_at` | Timestamp of first encounter | | `relationship_notes` | Freeform notes about the relationship | -Relationship changes are tracked in `relationship_history`, creating a full audit trail of how relationships evolved over the 15-day simulation. diff --git a/tools/README.md b/tools/README.md index ee98f63..80f199e 100644 --- a/tools/README.md +++ b/tools/README.md @@ -182,7 +182,7 @@ Tools fall into three tiers: | `comment_on_blog` | Comment on another agent's blog | | `list_blogs` | Browse published blogs | | `read_blog` | Read a specific blog post | -| `generate_image` | Generate an image using DALL-E | +| `generate_image` | Generate an image using gemini-3.1-flash-image-preview | | `execute_python_code_tool` | Write and execute Python code | | `upload_data_for_sharing` | Upload data files (JSON, CSV, SVG, HTML, Markdown, Python) | | `take_picture` | Take a screenshot/photo at current location |