Remember Fact
rememberStore a durable fact, preference, or decision into persistent memory across sessions.
Use when you discover an important user preference, key background detail, architecture choice, or durable fact that must be recalled in future sessions. Do NOT use for storing entire conversation logs or transient temporary state.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Durable fact, preference, decision, or memory to store. Store key facts for future sessions; do NOT store raw full chat transcripts. | |
| metadata | No | Optional structured key-value metadata to attach to this memory (e.g., {'category': 'user_preference', 'source': 'onboarding'}). | |
| namespace | Yes | Isolated storage namespace for the agent or user (e.g., 'user_123_pref', 'agent_project_alpha'). Must be 1-64 alphanumeric characters, hyphens, underscores, or dots. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||