remember
Creates or updates entities in your knowledge vault.Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Name of the entity |
entity_type | string | Yes | Type: person, project, concept, technology, decision, etc. |
content | string | Yes | Knowledge to store |
related_to | string[] | No | Names of related entities to link |
When your AI calls this
Your AI will callremember when:
- You share a decision: “We’re going with PostgreSQL for the new service”
- You mention someone new: “I just started working with Maria on the frontend”
- You correct something: “Actually, the deadline moved to March 15”
- You explicitly ask: “Remember that the API rate limit is 1000 req/min”
Examples
Storing a decision:Updates vs. creates
If an entity with the same name already exists,remember updates it with the new information. Previous versions are preserved. BaseLayer maintains a version history so no knowledge is lost.
You don’t need to worry about duplicates. BaseLayer intelligently merges new information with existing entities.