Merge pull request #8 from EmergenceAI/dev

update memory doc
This commit is contained in:
Karthik Vikram 2026-05-17 11:12:25 -05:00 committed by GitHub
commit 49eae51fc6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 6 deletions

View file

@ -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.
The `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.

View file

@ -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 |