store_episodic_memory
Store chronological events like ideas, notes, or agent runs in episodic memory and index them for vector search. Captures content, event type, and metadata to build a searchable research history.
Instructions
Store an event in episodic memory and index it for vector search.
Episodic memory is a chronological log of things that happened — ideas,
notes, papers read, tasks completed, agent runs.
Args:
content: The text content of the event to remember.
event_type: One of 'idea', 'note', 'task', 'paper', 'meeting', 'agent_run'.
session_id: Current pipeline session ID (optional).
metadata: JSON string with extra fields (e.g. title, tags, source).Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| event_type | No | note | |
| session_id | No | ||
| metadata | No | {} |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |